aboutsummaryrefslogtreecommitdiff
path: root/html/post.tmpl.html
blob: a7b3f5743efcb5fe111a4445fb2cf4d706710ee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "title" }}Blog{{end}}
{{ define "description" }}Blog{{end}}
{{ define "keywords" }}blog{{end}}

{{ define "main" }}
<section>
    <div class="main-bg">
      <h1>Blog</h1>
      <p>A collection of thoughts, life updates, projects, and images.</p>
    </div>
    <div class="return">
        <a href="/blog">&lt; Return</a>
    </div>
{{ template "article" . }}
    <div class="return">
        <a href="/blog">&lt; Return</a>
    </div>
</section>
{{ end }}