aboutsummaryrefslogtreecommitdiff
path: root/layouts/post/single.html
blob: 2c4c23e3cb3df727d96351404dbba08c5e1c150a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "main" }}
    {{ if not .Params.dontDisclaim }}
        {{ partial "disclaimer" . }}
    {{ end }}
    {{ with .GetTerms "categories" }}
        {{ (index . 0).RelPermalink }}
    {{ end }}
    <hgroup>
        <h1>{{ .Title }}</h1>
        <h6>{{ .Date | time.Format ":date_full" }}</h6>
        {{ with .Params.categories }}
        <div class="pills">
            {{ range $value := . }}
            <a href="{{ $.Site.BaseURL }}/categories/{{ $.Site.Taxonomies.categories.path }}/{{ $value | urlize }}">{{ $value }}</a>
            {{ end }}
        </div>
        {{ end }}
    </hgroup>
    <section class="content">
        {{- .Content -}}
    </section>
{{ end }}