summaryrefslogtreecommitdiff
path: root/themes/plaintext/layouts/collections/single.html
blob: 1833f68eb2d708f6028c974f6b71713cf8123338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ define "main" }}

<article class="article">
    <h1 class="article--heading">* {{ .Title }}</h1>

    {{ if .Params.toc }}
    <div class="article--toc">
        <h2>Table of Contents</h2>
        {{ .TableOfContents }}
    </div>

    <hr />
    {{ end }}

    <div class="article--body">{{ .Content }}</div>
</article>

<hr />

{{ with .GitInfo }}
<p class="last-modified"><i>This page was last modified {{ .CommitDate.Format "15:04:05 02-01-2006"}}</i></p>
{{ end }}

{{ end }}