The current Hugo theme for the beetbox.io website
 
 

22 lines
378 B

{{ define "main" }}
{{ $pages := .Site.RegularPages }}
{{if not .IsHome }}
<h1 class="center-text">{{ .Title | markdownify | lower }}</h1>
{{ $pages = .Pages }}
{{ end }}
<section>{{ .Content }}</section>
<section class="article-list">
{{ range $pages }}
{{ partial "article-card.html" . }}
{{ end }}
</section>
{{ end }}