-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
40 lines (36 loc) · 938 Bytes
/
template.html
File metadata and controls
40 lines (36 loc) · 938 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Contest! - Workshop B</title>
<style type="text/css">
* { border:0; padding:0; font-weight:normal;}
body {
font-family:Helvetica, "Helvetica Neue", Arial, Verdana;
background:#2d3235;
font-size:1.0em;
color:#fff;
}
h1 {
font-size:1.2em;
margin:60px 0 0 0;
}
</style>
</head>
<body>
<article>
<header>
<h1>Workshop B - The Contest!</h1>
</header>
<section>
{% for image in cakes_gallery.values.value %}
{% for x, y in image.attribute.items %}
{% if y != 'url' and y != 'text' %}
<img src="{{ y }}" /><br/>
{% endif %}
{% endfor %}
{% endfor %}
<footer>
</footer>
</article>
</body>
</html>