aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/utilities/single.html
blob: 7c377f5408306d8a40770d4832bfe088ac75fead (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "header" }}
    <h1>{{ .Title }}</h1>
    <div class="links-container">
    {{ with .Params.github }}
        {{ partial "links/github.html" . }}
    {{ end }}
    {{ with .Params.link }}
        {{ partial "links/link.html" . }}
    {{ end }}
    {{ with .Params.site }}
        {{ partial "links/site.html" . }}
    {{ end }}
    </div>
{{ end }}

{{ define "footer" }}
    {{ partial "meta-tag_nav.html" . }}
{{ end }}