hugo-theme-hello-amigo/layouts/index.html
2019-07-25 17:19:26 -04:00

18 lines
337 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>
{{ partial "social-icons.html" . }}
</div>
{{ end }}
</div>
</main>
{{ end }}