13 lines
332 B
Cheetah
13 lines
332 B
Cheetah
{{ define "bodyClass" }}page-postsList{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<main class="max-80">
|
|
<h1>Blog</h1>
|
|
|
|
<ul>
|
|
{{ range .Posts }}
|
|
<li><a href="/blog/{{ .Slug }}/"><strong>{{ .Date.Format "2006-01-02" }}</strong> - {{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</main>
|
|
{{ end }} |