hugo-theme-hello-friend/layouts/_default/single.html

61 lines
2 KiB
HTML
Raw Normal View History

2018-07-20 19:14:22 +02:00
{{ define "main" }}
<div class="post">
<h2 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
<div class="post-meta">
{{ with .Date | default nil }}
<span class="post-date">
{{ .Format "2006-01-02" }}
</span>
{{ end }}
2019-02-05 14:22:41 +01:00
{{ 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 }}
2018-07-20 19:14:22 +02:00
</div>
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
2019-01-29 11:11:48 +01:00
#<a href="{{ (urlize (printf "tags/%s" . )) | absURL }}">{{ . }}</a>&nbsp;
2018-07-20 19:14:22 +02:00
{{ end }}
</span>
{{ end }}
{{ with .Params.Cover }}
<img src="{{ . | absURL }}" class="post-cover" />
2018-07-20 19:14:22 +02:00
{{ end }}
<div class="post-content">
{{ .Content }}
</div>
{{ if or .NextInSection .PrevInSection }}
<div class="pagination">
<div class="pagination__title">
2019-02-05 14:22:41 +01:00
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts | default "Read other posts" }}</span>
2018-07-20 19:14:22 +02:00
<hr />
</div>
<div class="pagination__buttons">
{{ if .NextInSection }}
2019-01-06 11:23:25 +01:00
<span class="button previous">
<a href="{{ .NextInSection.Permalink }}">
<span class="button__icon"></span>
<span class="button__text">{{ .NextInSection.Title }}</span>
</a>
</span>
2018-07-20 19:14:22 +02:00
{{ end }}
{{ if .PrevInSection }}
2019-01-06 11:23:25 +01:00
<span class="button next">
<a href="{{ .PrevInSection.Permalink }}">
<span class="button__text">{{ .PrevInSection.Title }}</span>
<span class="button__icon"></span>
</a>
</span>
{{ end }}
2018-07-20 19:14:22 +02:00
</div>
</div>
{{ end }}
2019-02-01 15:06:59 +01:00
{{ partial "comments.html" . }}
</div>
2018-07-20 19:14:22 +02:00
{{ end }}