transfeminine-science/themes/tfsci/layouts/_default/list.html

15 lines
334 B
HTML
Raw Normal View History

2022-11-29 01:44:55 +08:00
{{- define "main" }}
<section class="container py-4">
{{ partial "page-header" . }}
<article class="content mt-6">
{{- partial "notice" . }}
{{ .Content }}
<ul>
{{- range .Pages }}
{{- if .Params.hidden }}{{- continue -}}{{- end }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{- end }}
</ul>
</article>
</section>
{{- end }}