27 lines
701 B
HTML
27 lines
701 B
HTML
|
{{ define "main" }}
|
||
|
<main>
|
||
|
<article>
|
||
|
<header>
|
||
|
<nav>
|
||
|
<a href="/">home</a>
|
||
|
<a href="..">go up</a>
|
||
|
</nav>
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
<h2>{{ .Description }}</h2>
|
||
|
</header>
|
||
|
<!-- "{{ .Content }}" pulls from the markdown content of the corresponding _index.md -->
|
||
|
{{ .Content }}
|
||
|
</article>
|
||
|
<ul>
|
||
|
<!-- Ranges through content/posts/*.md -->
|
||
|
{{ range .Pages }}
|
||
|
<li>
|
||
|
<a href="{{ .Permalink }}">
|
||
|
{{ if .Date }}{{ .Date.Format "2006-01-02" }} |{{ end }} {{ .Title }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</main>
|
||
|
{{ end }}
|