mirror of
https://codeberg.org/Mercury-IM/website
synced 2024-11-21 23:02:05 +01:00
22 lines
643 B
HTML
22 lines
643 B
HTML
|
|
||
|
{{ define "main" }}
|
||
|
<main aria-role="main">
|
||
|
<header class="homepage-header">
|
||
|
<h1>{{.Title}}</h1>
|
||
|
{{ with .Params.subtitle }}
|
||
|
<span class="subtitle">{{.}}</span>
|
||
|
{{ end }}
|
||
|
</header>
|
||
|
<div class="homepage-content">
|
||
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
||
|
{{.Content}}
|
||
|
</div>
|
||
|
<div>
|
||
|
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
|
||
|
{{ range first 10 .Pages }}
|
||
|
{{ .Render "summary"}}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</main>
|
||
|
{{ end }}
|