Made list layout clearer

This commit is contained in:
aethrvmn 2024-11-17 22:26:28 +01:00
parent 55cc4a8101
commit e62dcb55f2

View file

@ -2,18 +2,20 @@
{{ range sort .Paginator.Pages }}
<article class="markdown book-post">
<h2>
<a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a>
<u><a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a></u>
</h2>
{{ partial "docs/post-meta" . }}
<p>
{{- .Summary -}}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">...</a>
[...]
{{ end }}
<br/>
<a href="{{ .RelPermalink }}" style="color: #AC9C6D">read full post</a>
</p>
</article>
{{ end }}
<hr>
{{ template "_internal/pagination.html" . }}
{{ end }}