Added Hugo Simple theme and configured some basic customizations.

This commit is contained in:
2024-12-24 12:08:41 -08:00
parent fe34121c13
commit dc3b327d41
12 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{{ define "main" }}
<main aria-role="main">
<header class="home-page-header">
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="subtitle">{{ . }}</span>
{{ end }}
</header>
<div class="home-page-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 }}