janw.name/themes/janw/layouts/index.html

19 lines
579 B
HTML
Raw Permalink Normal View History

2022-11-05 19:00:03 +00:00
{{ define "main" }}
<main class="big-container">
<header>
<h1>{{.Title}}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{.}}</span>
{{ end }}
</header>
<div class="content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
{{.Content}}
</div>
<div>
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary"}}
{{ end }}
</div>
</main>
{{ end }}