summaryrefslogtreecommitdiffstats
path: root/layouts/blog/single.html
blob: 5ce7488dd3f36be0259c79e9edc5d208f2a80bc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ 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 }}