website/themes/zorbed/layouts/_default/home.html
2025-03-06 12:45:26 +02:00

17 lines
401 B
HTML

{{ define "main" }}
<div class="row">
<main class="one">
{{ .Content }}
</main>
<main class="two">
<ul>
{{ range ( where .Site.RegularPages "Type" "posts" | first 4 ) }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
<li><a href="/posts">... and more</a>
</ul>
</main>
</div>
{{ end }}