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

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