home/layouts/_default/single.html

31 lines
815 B
HTML
Raw Normal View History

2024-08-27 23:06:37 +00:00
{{ partial "header.html" . }}
<div class="article-meta">
<h1><span class="title">{{ .Title | markdownify }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
<p class="terms">
{{ range $i := (slice "categories" "tags") }}
{{ with ($.Param $i) }}
{{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
{{ end }}
{{ end }}
</p>
</div>
{{ if .Params.toc }}
{{ with .TableOfContents }}
<div id="table-of-contents">
<h2>Table of Contents</h2>
{{ . | safeHTML }}
</div>
{{ end }}
{{ end }}
<div class="content-wrapper">
<main>
{{ .Content }}
<a href="/"> >> Home</a>
</main>
</div>
{{ partial "footer.html" . }}