blob: 90170666b00f7068bf9cdb1861ab871f4e682abd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ 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 "main" }}
<h1>alexscerba.com<wbr>/blog</h1>
<section class="postContent">
<h2>Entries</h2>
{{ range .Contents }}
<p>- <a href="/blog/{{ .FileName }}">{{ .Title }}</a></p>
{{ end }}
</section>
{{ end }}
|