mirror of
https://github.com/thomasjsn/hugo-theme-hello-friend.git
synced 2024-11-15 04:45:08 +01:00
e6504a8bd7
Move post cover to partial
62 lines
1.8 KiB
HTML
62 lines
1.8 KiB
HTML
{{ define "main" }}
|
|
<div class="posts">
|
|
{{ range .Pages }}
|
|
<div class="post on-list">
|
|
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
|
<div class="post-meta">
|
|
{{ if .Date }}
|
|
<span class="post-date">
|
|
{{ .Date.Format ($.Site.Params.DateFormatList | default "2006-01-02") }}
|
|
</span>
|
|
|
|
{{ if $.Site.Params.LastModDisplay }}
|
|
{{ partial "lastmod.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ with .Params.Author }}
|
|
<span class="post-author"
|
|
>— {{ $.Site.Params.WrittenBy | default "Written by" }} {{ . }}</span
|
|
>{{ end }}
|
|
|
|
|
|
{{ if $.Site.Params.ShowReadingTime }}
|
|
<span class="post-read-time"
|
|
>— {{ .ReadingTime }} {{ $.Site.Params.MinuteReadingTime | default "min read" }}</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 }}
|
|
{{ partial "postcover.html" . }}
|
|
{{ end }}
|
|
|
|
<div class="post-content">
|
|
{{ with .Description }}
|
|
{{ . | markdownify }}
|
|
{{ else }}
|
|
{{ if .Truncated }}
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ if not .Params.hideReadMore }}
|
|
<div>
|
|
<a class="read-more button" href="{{ .RelPermalink }}"
|
|
>{{ $.Site.Params.ReadMore | default "Read more" }} →</a
|
|
>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</div>
|
|
{{ end }}
|