-
Notifications
You must be signed in to change notification settings - Fork 0
/
annual.prep
111 lines (91 loc) · 3.02 KB
/
annual.prep
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>What we did in {{year}}</title>
<!-- <link rel="stylesheet" type="text/css" href="reset-fonts-grids.css" />
<link rel="stylesheet" type="text/css" href="base.css"/>-->
<link rel="stylesheet" type="text/css" href="/default.css"/>
</head>
<body>
<!--<div id="logo-wrap">-->
<div id="logo">
<h1><a href="/">The Robinsons' web site</a></h1>
</div>
<!--</div>-->
<!-- start header -->
<div id="header">
<div id="menu">
<ul>
<li class="current_page_item"><a href="/">Homepage</a></li>
<!--<li><a href="#">Blogs</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">About</a></li>
<li class="last"><a href="#">Contact</a></li>-->
</ul>
</div>
</div>
<!-- end header -->
<!-- start page -->
<div id="wrapper">
<div id="wrapper-btm">
<div id="page">
<!-- start content -->
<div id="content">
<div class="post">
{{if year == "duboka"}}
<h1>Mladen's 3d renderings for Duboka</h1>
{{else}}
<h1>What we did in {{year}} </h1>
{{endif}}
<table><tr><td align="left">
<ul>
{{for gallery in galleries}}
<li><a href="/{{gallery['filename']}}">{{gallery["title"]}}</a></li>
{{endfor}}
</ul>
</td></tr></table>
</div>
</div>
<!-- end content -->
<!-- start sidebar -->
<div id="sidebar">
<ul>
<li>
<h2>Previous years...</h2>
<ul>
<li><a href="/2019/index.html">2019</a></li>
<li><a href="/2018/index.html">2018</a></li>
<li><a href="/2017/index.html">2017</a></li>
<li><a href="/2016/index.html">2016</a></li>
<li><a href="/2015/index.html">2015</a></li>
<li><a href="/2014/index.html">2014</a></li>
<li><a href="/2013/index.html">2013</a></li>
<li><a href="/2012/index.html">2012</a></li>
<li><a href="/2011/index.html">2011</a></li>
<li><a href="/2010/index.html">2010</a></li>
<li><a href="/2009/index.html">2009</a></li>
<li><a href="/2008/index.html">2008</a></li>
<li><a href="/2007/index.html">2007</a></li>
<li><a href="/2006/index.html">2006</a></li>
<li><a href="/2005/index.html">2005</a></li>
<li><a href="/2004/index.html">2004</a></li>
</ul>
</li>
</ul>
</div>
<!-- end sidebar -->
<div style="clear: both;"> </div>
</div>
<!-- end page -->
</div>
</div>
<!-- start footer -->
<div id="footer">
<div id="footer-wrap">
<!--<p id="legal">(c) 2007 YourSite. Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.</p>-->
</div>
</div>
<!-- end footer -->
</body>
</html>