blob: ca0f556d5e1f68539f07e7c71f1d71ac8c5c30ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ define "main" }}
{{ if not .Params.dontDisclaim }}
{{ partial "disclaimer" . }}
{{ 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 }}
|