mirror of
https://github.com/panr/hugo-theme-terminal.git
synced 2024-12-02 22:49:27 +03:00
d2aba65c9a
Implements solution proposed in https://github.com/panr/hugo-theme-terminal/issues/235#issuecomment-817480433 by @Laetgark Link to documentation: https://gohugo.io/templates/pagination/#list-paginator-pages
58 lines
1.6 KiB
HTML
58 lines
1.6 KiB
HTML
{{ define "main" }}
|
|
{{ with .Content }}
|
|
<div class="index-content">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
<div class="posts">
|
|
{{ range .Paginator.Pages }}
|
|
<div class="post on-list">
|
|
<h1 class="post-title">
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
</h1>
|
|
<div class="post-meta">
|
|
<span class="post-date">
|
|
{{ .Date.Format "2006-01-02" }}
|
|
</span>
|
|
{{ with .Params.Author }}
|
|
<span class="post-author">:: {{ . }}</span>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if .Params.tags }}
|
|
<span class="post-tags">
|
|
{{ range .Params.tags }}
|
|
#<a href="{{ (urlize (printf "tags/%s/" . )) | absLangURL }}">
|
|
{{- . -}}
|
|
</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ if .Params.Cover }}
|
|
<img src="{{ .Params.Cover | absURL }}" class="post-cover" alt="{{ .Title | plainify | default " " }}" />
|
|
{{ end }}
|
|
|
|
<div class="post-content">
|
|
{{ if .Params.showFullContent }}
|
|
{{ .Content | markdownify }}
|
|
{{ else if .Description }}
|
|
{{ .Description | markdownify }}
|
|
{{ else }}
|
|
{{ if .Truncated }}
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if not .Params.showFullContent }}
|
|
<div>
|
|
<a class="read-more button"
|
|
href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</div>
|
|
{{ end }}
|