hugo-theme-introduction/layouts/_default/terms.html

31 lines
1 KiB
HTML
Raw Normal View History

2018-01-26 19:00:30 +00:00
{{ partial "header.html" . }}
<body>
2018-06-25 13:03:18 +00:00
<!-- Parent section -->
<div class="section" id="top">
<!-- Begin Title -->
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}">
<h1 class="bold-title is-1">{{ .Title }}</h1>
</div>
<!-- End Title -->
<!-- Everything below fades in two! -->
<div class="section no-padding {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
{{ partial "nav.html" . }}
<article>
{{ .Content }}
</article>
<div class="container">
<div class="section tags-list">
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<a class="tag-cloud" href="{{"tags/" | relLangURL }}{{ $name | urlize }}">{{ lower $name }} ({{ len $taxonomy }})</a>
{{ end }}
2018-01-26 19:00:30 +00:00
</div>
</div>
2018-06-25 13:03:18 +00:00
{{ partial "top-icon-with-hr.html" . }}
{{ partial "footer.html" . }}
</div>
<!-- End fade in two -->
</div>
<!-- End parent section -->
2018-06-09 23:30:15 +00:00
</body>