basic page rendering

This commit is contained in:
Nick Pegg 2024-08-03 18:02:02 -07:00
parent 4f5bd76f8a
commit 321cbee134
7 changed files with 117 additions and 29 deletions

View file

@ -1 +1,17 @@
This is the photo template
{% extends "base.html" %}
{% block content %}
<div id="nav">
prev
<a href="..">up</a>
next
</div>
<div id="photo">
<img src="{{image_path.display_filename()}}" />
</div>
<div id="download">
<a href="../{{image_path.path.name}}">view full size</a>
</div>
{% endblock %}