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