blog/layouts/partials/post-list.html

17 lines
500 B
HTML
Raw Normal View History

2020-11-03 22:14:45 +00:00
<table style="width: 100%;">
{{- range .Pages -}}
2022-02-02 09:16:56 +00:00
{{ if not .Draft }}
<tr class="postlisting-row">
2022-07-19 08:49:38 +00:00
<td class="info">
{{ .Date.Format "2006 Jan 02" }}
</td>
2022-02-02 09:16:56 +00:00
<td>
<span class="title">
<a href="{{ .RelPermalink }}" class="brand-colorlink">{{ .Title }}</a>
</span>
</td>
</tr>
{{ end }}
2020-11-03 22:14:45 +00:00
{{- end -}}
</table>