12 lines
No EOL
320 B
HTML
12 lines
No EOL
320 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
<div class="posts-list">
|
|
{{ range .Pages }}
|
|
<article class="post-preview">
|
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
<time>{{ .Date.Format "January 2, 2006" }}</time>
|
|
<p>{{ .Summary }}</p>
|
|
</article>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }} |