35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
{{ define "main" }}
|
|
<main id="main">
|
|
<h1>
|
|
<svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
|
|
<use xlink:href="#bookmark"></use>
|
|
</svg>
|
|
{{ .Title }}
|
|
</h1>
|
|
<div class="date">
|
|
{{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
|
|
<strong aria-hidden="true">Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
|
|
</div>
|
|
{{ with .Params.tags }}
|
|
<div class="tags">
|
|
<strong aria-hidden="true">Tags: </strong>
|
|
<ul aria-label="tags">
|
|
{{ range . }}
|
|
<li>
|
|
<svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
|
|
<use xlink:href="#tag"></use>
|
|
</svg>
|
|
<a href="{{ "tags/" | absLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if ne .Params.toc false }}
|
|
{{ partial "toc" . }}
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</main>
|
|
{{ end }}
|