awesome-hugo/layouts/index.html

12 lines
284 B
HTML
Raw Normal View History

{{ define "main" }}
<main aria-role="main">
<header class="homepage-header">
<h1>{{.Title}}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{.}}</span>
{{ end }}
</header>
{{ readFile "README.md" | markdownify }}
</main>
{{ end }}