photojawn/photoalbum/skel/_templates/album.html

37 lines
1,020 B
HTML

{% extends "base.html" %}
{% block content %}
{% if not album_dir.is_root %}
<p>
<a href="..">
<i class="arrow arrow-up"></i>
</a>
</p>
{% endif %}
{% if album_dir.children %}
<h1>Albums</h1>
<ul id="album-children">
{% for child in album_dir.children %}
<li class="album">
<a href="{{child.path.name}}/">
{{child.path.name}}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% if album_dir.images %}
<h1>Photos</h1>
<div id="album-photos">
{% for image in album_dir.images %}
<div class="thumbnail">
<a href="slides/{{image.html_filename()}}">
<img src="slides/{{image.thumbnail_filename()}}" />
</a>
</div>
{% endfor %}
</div>
{% endif %}
{% endblock %}