2021-08-11 05:28:33 +00:00
|
|
|
{{ define "main" }}
|
2021-08-15 08:41:40 +00:00
|
|
|
{{ $partial := print "partials/home/" .Site.Params.homepage.layout ".html" }}
|
|
|
|
{{ if templates.Exists $partial }}
|
|
|
|
{{ partial $partial . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ partial "partials/home/page.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.homepage.showList | default false }}
|
|
|
|
<section>
|
|
|
|
<h2 class="text-2xl font-extrabold">Recent</h2>
|
|
|
|
{{ range first 5 (.Paginate (where .Site.RegularPages "Type" "in" .Site.Params.homepage.listSections)).Pages }}
|
|
|
|
{{ partial "article-link.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ end }}
|