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

30 lines
640 B
HTML
Raw Normal View History

2022-08-02 14:05:56 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
2022-08-02 14:05:56 -04:00
2023-02-23 17:39:20 -05:00
<hr>
{{ .Content }}
2022-08-29 10:36:22 -04:00
2023-01-02 16:22:42 -05:00
<table>
2022-12-27 21:47:12 -05:00
<tr>
2023-01-02 16:22:42 -05:00
<th>Title</th>
<th>Summary</th>
<th>Date</th>
2022-12-27 21:47:12 -05:00
</tr>
2022-12-27 22:34:31 -05:00
2022-12-27 21:47:12 -05:00
{{ range .Data.Pages.ByDate.Reverse }}
2022-12-27 22:34:31 -05:00
<tr>
2023-01-02 16:22:42 -05:00
<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
2022-12-27 21:47:12 -05:00
2023-01-02 16:22:42 -05:00
<td>
2022-12-27 22:34:31 -05:00
{{ .Summary }}
</td>
2022-12-27 21:47:12 -05:00
2023-01-02 16:22:42 -05:00
<td>
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>{{ .Date.Format "Jan 2, 2006"}}</time>
2022-12-27 22:34:31 -05:00
</td>
</tr>
2022-12-27 21:47:12 -05:00
{{ end }}
</table>
2022-08-02 14:05:56 -04:00
{{ end }}