Change the blog list style

This commit is contained in:
Joshua Goins 2025-03-17 08:35:54 -04:00
parent b33e6bc25e
commit 882c81019f

View file

@ -11,27 +11,13 @@
{{ .Content }} {{ .Content }}
{{ end }} {{ end }}
<table> {{ range $paginator.Pages }}
<tr> <li style="margin-left: 10px; list-style-type: square;">
<th>Title</th> <h3 style="margin-bottom: 5px"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<th>Summary</th> <i><time datetime='{{ .Date.Format "2006-01-02" }}'>{{ .Date.Format "Jan 2, 2006"}}</time></i>
<th>Date</th> <p><i>{{ .Summary }}</i></p>
</tr> </li>
{{ end }}
{{ range $paginator.Pages }}
<tr>
<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
<td>
{{ .Summary }}
</td>
<td>
<time datetime='{{ .Date.Format "2006-01-02" }}'>{{ .Date.Format "Jan 2, 2006"}}</time>
</td>
</tr>
{{ end }}
</table>
<ul class="pagination"> <ul class="pagination">
{{ with $paginator.Prev }} {{ with $paginator.Prev }}