summaryrefslogtreecommitdiffstats
path: root/layouts/blog/single.html
blob: 84868d8b0f1ed31ea03ea8e3c1e8dfd9b0875b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}
<header class="blog__header">
  <a href="/blog">/~/blog/</a> {{ .Title }}
</header>
<div class="blog__date">{{ .Date.Format "2006.01.02" }}</div>
<article class="post__content">
    {{ .Content }}
</article>
{{end}}

{{ define "footer" }}
<hr>
<div class="blog__footer">
  Thanks for reading.<br>
  Leave a comment or a question
  <a href="mailto:{{ .Site.Data.home.index.Meta.Email }}?subject=Blog/{{ .Title }}">
    via email
  </a>.
</div>
{{ end }}