The current Hugo theme for the beetbox.io website
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.
 
 

41 lines
1012 B

{{ define "main" }}
{{ $pages := .Site.RegularPages }}
{{if not .IsHome }} {{ $pages = .Pages }} {{ end }}
<main>
<h1>{{ .Title | markdownify | title }}</h1>
{{ 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 }}