github.io/layouts/_default/list.html
Sivert V. Sæther d64efb5fb4 Hugo go go go
Made a hugo setup from scratch to generate a static blog and portfolio webpage.
The old stuff may still be found in static/old.
2022-03-29 23:00:36 +00:00

24 lines
445 B
HTML

{{ define "main" }}
<div class='row'>
<div class='col-md-2'>
<aside id="meta">
{{ .TableOfContents }}
</aside>
</div>
<div class='col-md-10'>
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<ul class="contents">
{{ range .Pages }}
<li>
{{ partial "summary.html" . }}
</li>
{{ end }}
</ul>
</article>
</div>
</div>
{{ end }}