www.byjp.me/layouts/index.html
JP Hastings-Spital 2388d1247d
Reduce carbon footprint (#2)
* Reduce pageload by using system fonts
* Mark image size on homepage
* Remove unused conditionals
* Remove fonts, update /now
2023-09-09 08:32:24 +01:00

26 lines
780 B
HTML

{{ define "body" }}
<body class="{{ 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" .}}
{{ partial "site-last-update.html" }}
</section>
</main>
{{ end }}