hugo-theme-anubis2/layouts/index.html

29 lines
801 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
2020-05-07 21:02:59 +02:00
<div class="homepage-content">
{{ .Content }}
</div>
2020-02-15 20:26:47 +01:00
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ range (.Paginate $pages).Pages }}
2020-01-12 07:51:51 +01:00
<article class="post-list">
<header>
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
2020-06-03 22:26:07 +02:00
<div class="content post-summary">
2020-02-02 16:01:10 +01:00
{{ .Summary | safeHTML }}
</div>
<!-- {{ if .Truncated }}
<div class="read-more">
<a href="{{ .RelPermalink }}">{{ i18n "readMore" | humanize }}</a>
</div>
{{ end }} -->
{{ partial "articleInfoFull.html" . }}
2020-01-12 07:51:51 +01:00
</article>
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}