ref: master
layouts/home.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{{ define "main" }}
{{ $nums := partialCached "dispatch-numbers.html" . "dispatch-numbers" }}
<main>
<div class="page-content">
<header class="site-header">
{{ partial "masthead.html" . }}
<p class="byline">{{ i18n "byline" }}</p>
<div class="divisor"></div>
</header>
<div class="languages">
{{ partial "available-lang.html" . }}
</div>
<section class="dispatch-list">
{{ range (where .Site.RegularPages "Section" "blog") }}
{{ partial "dispatch-entry.html" (dict "page" . "nums" $nums) }}
{{ end }}
</section>
{{ partial "colophon.html" . }}
</div>
</main>
{{ end }}
|