mirror of
https://github.com/andrewgioia/blog.git
synced 2024-12-23 02:39:55 +00:00
26 lines
620 B
HTML
26 lines
620 B
HTML
{{ define "main" }}
|
|
<main id="list">
|
|
<h1>
|
|
{{ cond (ne .Type "page") .Type "Posts" }}
|
|
</h1>
|
|
|
|
{{ range .Pages }}
|
|
<section>
|
|
<h2>
|
|
<a href="{{ .RelPermalink }}" class="wa link">
|
|
<span>{{ .Title }}</span>
|
|
<b class="arrow"></b>
|
|
</a>
|
|
</h2>
|
|
<h3>
|
|
Written by {{ .Params.author }} on {{ .PublishDate.Format "January 1, 2006" }}
|
|
·
|
|
{{ .ReadingTime }} minute read
|
|
</h3>
|
|
<p>
|
|
{{ .Summary }}
|
|
</p>
|
|
</section>
|
|
{{ end }}
|
|
</main>
|
|
{{ end }} |