Made list layout clearer
This commit is contained in:
parent
55cc4a8101
commit
e62dcb55f2
1 changed files with 5 additions and 3 deletions
|
@ -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 }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue