You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
378 B
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 }}
|
|
|
|
|