website-theme/layouts/_default/single.html

26 lines
702 B
HTML
Raw Normal View History

2018-09-23 07:11:35 -04:00
{{ define "main"}}
<h1 class='title'>{{ .Title }}</h1>
2019-03-23 03:18:03 -04:00
{{ partial "header.html" . }}
2019-09-15 13:35:55 -04:00
{{ if not .Date.IsZero }}
2019-03-23 03:18:03 -04:00
<!-- date -->
{{ $singlePageDateFormat := .Site.Params.singlePageDateFormat | default "January 2, 2006"}}
<p class="date">{{ .Date.Format $singlePageDateFormat }}</p>
2020-12-22 09:36:03 -05:00
{{ end }}
2020-01-15 21:47:11 -05:00
<!-- tags -->
<div id="tags">
<ul>
{{ range .Param "tags" }}
{{ $name := . }}
{{ with $.Site.GetPage (printf "/tags/%s" ($name | urlize)) }}
<li><a href="{{ .Permalink }}">{{ $name }}</a></li>
{{ end }}
{{ end }}
</ul>
</div>
2019-03-23 03:18:03 -04:00
<!-- content -->
2019-03-23 12:59:56 -04:00
<div id="contentBody">
2019-03-23 03:18:03 -04:00
{{ .Content }}
</div>
{{ partial "footer.html" . }}
2018-09-23 07:11:35 -04:00
{{ end }}