blob: e3c1f33c5d42e7a646ad72acd2db9b5ca2ebfc38 (
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
|
{{ define "title" }}
<title>Gallery - Christine Dodrill</title>
{{ end }}
{{ define "content" }}
<h1>Gallery</h1>
<p>Here are links to all of the art I have done in the last few years.</p>
<p>If you have a compatible reader, be sure to check out my <a href="/blog.rss">RSS Feed</a> for automatic updates. Also check out the <a href="/blog.json">JSONFeed</a>.</p>
<p>
<div class="grid">
{{ range . }}
<div class="card cell -4of12 blogpost-card">
<header class="card-header">{{ .Title }}</header>
<div class="card-content">
<center><p>Posted on {{ .DateString }} <br><a href="{{ .Link }}"><img src="{{ .ThumbURL }}" /></a></p></center>
</div>
</div>
{{ end }}
</div>
</p>
{{ end }}
|