aboutsummaryrefslogtreecommitdiff
path: root/assets/templates/album.html
blob: 95d9935b935912f1d28a2d42343cac72067b0816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}
{% block content %}
<div class="header-container">
	<h1>
	<a href="{{ index }}/#{{ album.year }}">{{ album.year }}</a> 
	{% if album.title %}
	{{ album.title }} 
	{% else %}
	Untitled 
	{% endif %}
	</h1>
	<p>from <a href="{{ index }}/">{{ title }}</a> </p>
</div>
<div class="gallery-container">
	<p>{{ album.desc }}</p>
	<div class="album-container">
		{% for thumb in album.thumbs %}
		<a href="{{ thumb.link }}">
			<img class="thumbnail" src="{{ thumb.source }}">
		</a>
		{% endfor %}
	</div>
</div>
{% endblock %}