mirror of
https://github.com/Extroonie/extroonie.com.git
synced 2026-07-07 07:06:42 -07:00
20 lines
358 B
HTML
20 lines
358 B
HTML
|
|
{{ define "main" }}
|
||
|
|
<div class="layout">
|
||
|
|
<h1>{{ .Title }}</h1>
|
||
|
|
{{ if .Content }}
|
||
|
|
<div class="content">{{ .Content }}</div>
|
||
|
|
{{ end }}
|
||
|
|
|
||
|
|
<ul>
|
||
|
|
{{ range .Pages }}
|
||
|
|
<li>
|
||
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
|
|
{{ if .Date }}
|
||
|
|
<span class="date">{{ .Date.Format "2006-01-02" }}</span>
|
||
|
|
{{ end }}
|
||
|
|
</li>
|
||
|
|
{{ end }}
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
{{ end }}
|