blob: 1301ae9b2f050fda192021facd624c454791e4e5 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jtle images</title>
<link rel="icon" href="/favicon.png">
<meta name="robots" content="noindex,nofollow">
<style>
img {
width: 50%;
}
.post {
background-color: lightgray;
margin-bottom: 20px;
padding: 10px;
}
</style>
</head>
<body>
<p>Billeder taget på forskellige ferier etc, som jeg bruger til baggrund.</p>
{% if ctx.cgit is not none %}
<p>Klik på et billede for at få fuld opløsning.
Højere opløsning samt licens kan også findes <a href="{{ ctx.cgit }}/tree">her</a>.</p>
{% endif %}
{% for img in images %}
<div class="post">
{% if img.taken is not none %}
<i>Taget {{ img.taken }}</i>
{% endif %}
{% if img.description is not none %}
<p>{{ img.description }}</p>
{% endif %}
{% if img.fullurl is not none %}
<a href="{{ img.fullurl }}">
<img src="{{ img.scaledpath }}" />
</a>
{% else %}
<img src="{{ img.scaledpath }}" />
{% endif %}
</div>
{% endfor %}
{% if ctx.git is not none %}
<p>Bygget fra commit {{ ctx.git }}</p>
{% endif %}
</body>
</html>
|