ar.falsy.cat/layouts/_default/term.html

22 lines
515 B
HTML
Raw Normal View History

2021-12-28 00:35:42 +00:00
<!DOCTYPE html>
<html lang="{{ .Lang }}">
2021-12-28 00:35:42 +00:00
{{ partial "head.html" . }}
<body>
{{partial "search.html" .}}
<div class="singlePage">
<!-- Begin actual content -->
2022-07-13 21:32:32 +00:00
{{partial "header.html" .}}
2021-12-28 00:35:42 +00:00
<article>
<h1>{{ i18n "tag" }}: {{ .Title }}</h1>
{{with .Params.description}}
<p>{{.}}</p>
{{end}}
2021-12-28 00:35:42 +00:00
{{partial "page-list.html" .Paginator.Pages}}
{{ template "_internal/pagination.html" . }}
</article>
{{partial "contact.html" .}}
</div>
</body>
</html>