Sivert V. Sæther
d64efb5fb4
Made a hugo setup from scratch to generate a static blog and portfolio webpage. The old stuff may still be found in static/old.
17 lines
298 B
HTML
17 lines
298 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 }}
|
|
</article>
|
|
</div>
|
|
</div>
|
|
{{ end }} |