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
928 B
41 lines
928 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>
|
|
|
|
<section>
|
|
<h2>Latest Posts:</h2>
|
|
{{ with $pages.Limit 4 }}
|
|
<section class="article-list">
|
|
{{ range . }}
|
|
{{ partial "article.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
</section>
|
|
|
|
<section>
|
|
<h2>All Posts:</h2>
|
|
{{ with $pages }}
|
|
{{ range .GroupByDate "2006" }}
|
|
<p>{{ .Key }}</p>
|
|
<ul>
|
|
{{ range .Pages -}}
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
{{ end -}}
|
|
</ul>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
|