Files
hugo-starless/themes/starless/layouts/_default/list.html

28 lines
785 B
HTML

{{ define "main" }}
<div class="content">
<h1>{{ .Title }}</h1>
{{ .Content }}
</div>
<div class="page-actions">
<a class="page-link" href="{{ `/` | relLangURL }}">
Home <span class="material-symbols-outlined">arrow_back</span>
</a>
<hr class="rule">
</div>
<div class="page-list">
{{ range .Pages.ByWeight }}
<article>
<p class="entry-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></p>
{{ with .Params.summary }}
<p class="entry-summary">{{ . }}</p>
{{ else }}
{{ with .Summary }}<p class="entry-summary">{{ . | plainify }}</p>{{ end }}
{{ end }}
</article>
{{ end }}
</div>
<div class="footer-note page-footer">
{{ site.Params.homeFooter }}
</div>
{{ end }}