www.byjp.me/layouts/index.html
JP Hastings-Spital 4c2d44d78b Fix homepage
2023-10-24 20:42:10 +01:00

25 lines
780 B
HTML

{{ define "body" }}
<body class="homepage {{ if .Site.Params.backgroundImage }} background-image" style="background-image: url('{{ .Site.Params.backgroundImage }}');" {{ else }}"{{ end }}>
{{ end }}
{{ define "main" }}
<main aria-role="main">
<div>
<h1 class="accented">{{ .Site.Title }}</h1>
{{ partial "subtitle.html" . }}
{{- with .Site.Params.social }}
<div class="social">
{{ partial "social-icons.html" . }}
</div>
{{- end }}
</div>
<br />
<hr />
<section class="posts" style="text-align:center">
{{ partial "about-me.html" .}}
</section>
</main>
{{ partial "site-last-update.html" }}
{{ end }}