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

54 lines
1.7 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">
<span class="post-date">
2018-07-30 19:03:01 +02:00
{{ .Date.Format "2006-01-02" }}
2018-07-20 19:14:22 +02:00
</span>
2019-01-29 19:24:36 +01:00
{{ with .Params.Author }}<span class="post-author">{{ $.Site.Params.WrittenBy }} {{ . }}</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 }}
2019-01-29 11:11:48 +01:00
<img src="{{ printf "img/%s" . | 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-01-29 11:11:48 +01:00
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</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 }}
</div>
{{ end }}