chill_hugoplate/themes/hugoplate/layouts/_default/list.html

21 lines
450 B
HTML
Raw Normal View History

2023-05-25 10:41:54 +00:00
{{ define "main" }}
{{ partial "page-header" . }}
2023-07-12 04:12:44 +00:00
2023-05-25 10:41:54 +00:00
<section class="section">
<div class="container">
<ul class="text-center">
{{ range .RegularPages }}
<li class="m-3">
<a
href="{{ .Permalink }}"
class="text-dark dark:text-darkmode-dark block text-xl">
{{ .Title }}
</a>
</li>
{{ end }}
</ul>
2023-05-25 10:41:54 +00:00
</div>
</section>
{{ end }}