www.byjp.me/themes/hello-friend-ng/layouts/index.html
2023-04-28 19:34:34 +01:00

29 lines
971 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>
{{ if .Site.Params.Portrait.Path }}
<img src="{{ .Site.Params.Portrait.Path }}" class="circle" alt="{{ .Site.Params.Portrait.Alt }}" style="max-width:{{ .Site.Params.Portrait.MaxWidth }}" />
{{ end }}
<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>
{{ end }}