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.
48 lines
1.1 KiB
48 lines
1.1 KiB
{{ define "main" }}
|
|
{{ $pages := .Site.RegularPages }}
|
|
{{if not .IsHome }} {{ $pages = .Pages }} {{ end }}
|
|
|
|
<main>
|
|
{{ if not .IsHome }}
|
|
<h1>{{ .Title | markdownify | lower }}</h1>
|
|
{{ else }}
|
|
<h1>Beet Box</h1>
|
|
{{ end }}
|
|
|
|
{{ if and .IsSection (not .IsHome) }} {{ partial "article-meta.html" . }} {{ end }}
|
|
|
|
{{ with .Content }}
|
|
<section>
|
|
{{ . }}
|
|
</section>
|
|
{{- end }}
|
|
|
|
</main>
|
|
|
|
{{ with $pages.Limit 4 }}
|
|
<section>
|
|
<h2>Latest Posts:</h2>
|
|
<section class="article-list">
|
|
{{ range . }}
|
|
{{ partial "article.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ with $pages }}
|
|
<section>
|
|
<h2>All Posts:</h2>
|
|
{{ range .GroupByDate "2006" }}
|
|
<p>{{ .Key }}</p>
|
|
<ul>
|
|
{{ range .Pages -}}
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
{{ end -}}
|
|
</ul>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|