dc09-hugo/themes/qogir/layouts/_default/terms.html

10 lines
195 B
HTML
Raw Normal View History

2023-11-04 19:53:00 +04:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<div class="tag-item">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</div>
{{ end }}
{{ end }}