site/themes/sitetheme/layouts/index.html

19 lines
420 B
HTML

{{ define "main" }}
<div class="homepage-wrapper">
<div class="border homepage-content">
{{ .Content }}
</div>
<div class="border homepage-column">
<!--<h2> {{ .Params.name }}</h2>
<ul>
<li>Pronouns: {{ .Params.pronouns}}</li>
<li>Location: {{ .Params.location}}</li>
<li>Fedi handle: {{.Params.fedi}}</li>
</ul>-->
{{ with .Site.GetPage "/about" }}
{{ .Content }}
{{ end }}
</div>
</div>
{{ end }}