hugo-theme-hello-amigo/layouts/index.html

18 lines
352 B
HTML

{{ define "main" }}
<main aria-role="main">
<div>
<h1>{{ .Site.Title }}</h1>
<h3>{{ .Site.Params.Subtitle }}</h3>
{{ with .Site.Params.homeSubtitle }}
<p>{{.}}</p>
{{ end }}
{{ with .Site.Params.social }}
<div class="socials">
{{ partial "social-icons.html" . }}
</div>
{{ end }}
</div>
</main>
{{ end }}