hugo-theme-terminal/layouts/_default/single.html

62 lines
1.8 KiB
HTML
Raw Normal View History

2019-01-28 00:11:02 +00:00
{{ define "main" }}
<div class="post">
2019-02-05 09:49:54 +00:00
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
2019-01-28 00:11:02 +00:00
<div class="post-meta">
<span class="post-date">
{{ .Date.Format "2006-01-02" }}
</span>
2019-01-29 17:59:47 +00:00
{{ with .Params.Author }}<span class="post-author">:: {{ . }}</span>{{ end }}
2019-01-28 00:11:02 +00:00
</div>
{{ if .Params.tags }}
<span class="post-tags">
{{ range .Params.tags }}
#<a href="{{ (urlize (printf "tags/%s/" .)) | absURL }}">{{ . }}</a>&nbsp;
2019-01-28 00:11:02 +00:00
{{ end }}
</span>
{{ end }}
{{ with .Params.Cover }}
2019-02-08 23:40:11 +00:00
<img src="{{ . | absURL }}" class="post-cover" />
2019-01-28 00:11:02 +00:00
{{ end }}
2019-03-31 17:18:08 +00:00
{{ if .Params.Toc }}
<div class="table-of-contents">
{{ .TableOfContents }}
</div>
{{ end }}
2019-01-28 00:11:02 +00:00
<div class="post-content">
{{ .Content }}
</div>
{{ if or .NextInSection .PrevInSection }}
<div class="pagination">
<div class="pagination__title">
2019-01-29 10:18:14 +00:00
<span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</span>
2019-01-28 00:11:02 +00:00
<hr />
</div>
<div class="pagination__buttons">
{{ if .NextInSection }}
<span class="button previous">
<a href="{{ .NextInSection.Permalink }}">
<span class="button__icon"></span>
<span class="button__text">{{ .NextInSection.Title }}</span>
</a>
</span>
{{ end }}
{{ if .PrevInSection }}
<span class="button next">
<a href="{{ .PrevInSection.Permalink }}">
<span class="button__text">{{ .PrevInSection.Title }}</span>
<span class="button__icon"></span>
</a>
</span>
{{ end }}
</div>
</div>
{{ end }}
2019-02-14 23:38:45 +00:00
{{ partial "comments.html" . }}
2019-01-28 00:11:02 +00:00
</div>
{{ end }}