redstrate.com/themes/retro/layouts/_default/list.html

30 lines
640 B
HTML
Raw Normal View History

2023-03-30 21:47:18 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ .Content }}
<table>
<tr>
<th>Title</th>
<th>Summary</th>
<th>Date</th>
</tr>
{{ range .Data.Pages.ByDate.Reverse }}
<tr>
<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
<td>
{{ .Summary }}
</td>
<td>
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>{{ .Date.Format "Jan 2, 2006"}}</time>
</td>
</tr>
{{ end }}
</table>
{{ end }}