site/themes/sitetheme/layouts/index.html

21 lines
483 B
HTML

{{ define "main" }}
<!--<div class="homepage-wrapper">-->
<div class="home-columns" style="display: flex;" >
<div class="border base-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 class="border base-column">
{{ .Content }}
</div>
</div>
<!--</div>-->
{{ end }}