summaryrefslogtreecommitdiff
path: root/themes/orca/layouts/_default/single.html
blob: 66ded2e8905be8f572c52f6a5f920b2c7d87c438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ with .Params.res }}
<div class="res">
  <div>Resources</div>
  <ul>
  {{ range . }}
    {{ range $k, $v := . }}
    <li><a href="{{ $v }}">{{ $k }}</a></li>
    {{ end }}
  {{ end }}
  </ul>
</div>
{{ end }}
{{ .Summary }}
{{ .TableOfContents }}
{{ (replace .Content .Summary "") | safeHTML }}
  {{ with .Lastmod }}
<p>Last modified {{ .Format "January 2nd, 2006" }}.</p>
  {{ end }}
{{ end }}