blob: 989743cbada1e2ad3572f77b39d29b6e79e97d00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "title" }}Blog{{end}}
{{ define "description" }}Site blog featuring personal and project updates as well as anything random I want to share.{{end}}
{{ define "keywords" }}blog{{end}}
{{ define "canonical" }}/blog{{end}}
{{ define "main" }}
<h1>Blog</h1>
<section class="postBackground">
<div class="postContent">
<h2>Entries</h2>
{{ range .Posts.Contents}}
<p>- <a href="/blog/{{ .FileName }}">{{ .Title }}</a></p>
{{ end }}
</div>
</section>
{{ end }}
|