summaryrefslogtreecommitdiff
path: root/layouts/posts/single.html
blob: 79cd303b3ec0c8d76fd1ee09c5cc67fdf5dc8c24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<article class="markdown">
  <h1>
    <a href="{{ .RelPermalink }}">{{ .Title }}</a>
  </h1>
  {{ partial "docs/post-meta" . }}
  {{- .Content -}}
</article>
{{ end }}

{{ define "toc" }}
  {{ partial "docs/toc" . }}
{{ end }}