blog/layouts/partials/post-list.html

20 lines
531 B
HTML
Raw Normal View History

2020-11-03 22:14:45 +00:00
<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
2020-11-03 22:26:36 +00:00
on {{ partial "rel-date" .Date }}
2020-11-03 22:14:45 +00:00
</small>
</td>
</tr>
{{- end -}}
</table>