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.
10 lines
198 B
HTML
10 lines
198 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
<ul class='contents'>
|
|
{{ range .Pages }}
|
|
<li>
|
|
<a href='{{ .Permalink }}'>{{ .Date.Format "2006/01/02" }} - {{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }} |