16 lines
449 B
HTML
16 lines
449 B
HTML
{{ define "main" }}
|
|
<div class="dream-list reveal">
|
|
<h1 class="list-heading">
|
|
<span class="section-glyph">◈</span>
|
|
{{ .Title | default .Section | title }}
|
|
</h1>
|
|
{{ range .Paginator.Pages }}
|
|
<a href="{{ .RelPermalink }}" class="list-entry reveal">
|
|
<time>{{ .Date.Format "2006.01.02" }}</time>
|
|
<h3>{{ .Title }}</h3>
|
|
<p>{{ .Summary | truncate 100 }}</p>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|