blob: d90c19eb5e97a37895a2d5893b4cfd32c55e3962 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ define "meta"}}
<title>Blog</title>
<meta name="description" content="Site blog featuring personal and project updates as well as anything random I want to share.">
{{ end }}
{{ define "main" }}
<h1>Blog</h1>
<p class="subtitle">Personal and site updates.</p>
<hr>
{{ range .Contents }}
{{ printf "%s" .Thumbnail }}
{{ end }}
<a href="/blog">Top</a>
{{ end }}
|