cupper-hugo-theme/themes/infusion/layouts/patterns/single.html

34 lines
1016 B
HTML
Raw Normal View History

2017-06-20 10:53:54 +02:00
{{ define "main" }}
<main id="main">
2017-07-28 14:31:46 +02:00
<h1>
2017-08-03 13:16:24 +02:00
<svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
<use xlink:href="#bookmark"></use>
</svg>
2017-07-28 14:31:46 +02:00
{{ .Title }}
</h1>
2017-06-20 10:53:54 +02:00
{{ if isset .Params "tags" }}
<div class="tags">
<strong aria-hidden="true">Tags: </strong>
<ul aria-label="tags">
{{ range .Params.tags }}
2017-07-04 12:17:09 +02:00
{{ if ne . "example tag"}}
{{ if ne . "another tag"}}
<li>
2017-08-03 13:16:24 +02:00
<svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
2017-07-04 12:17:09 +02:00
<use xlink:href="#tag"></use>
</svg>
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
</li>
{{ end }}
{{ end }}
2017-06-20 10:53:54 +02:00
{{ end }}
</ul>
</div>
{{ end }}
2017-07-14 18:26:35 +02:00
{{ if ne .Params.TOC false }}
{{ partial "toc" . }}
{{ end }}
2017-06-20 10:53:54 +02:00
{{ .Content }}
</main>
{{ end }}