blog/layouts/partials/post-list.html
2020-11-03 16:14:45 -06:00

20 lines
536 B
HTML

<table style="width: 100%;">
{{- range .Pages -}}
<tr class="postlisting-row">
<td>
<span style="font-size: 1.2em;">
<a href="{{ .Permalink }}" class="brand-colorlink">{{ .Title }}</a>
</span>
<br />
<small>
{{ .ReadingTime }} min read -
Posted
on {{ .Date.Format "Mon Jan 2 2006" }}
</small>
</td>
</tr>
{{- end -}}
</table>