hugo-theme-even/layouts/post/single.html

73 lines
2.4 KiB
HTML
Raw Normal View History

2017-08-27 14:38:42 +00:00
{{ define "content" -}}
<article class="post">
<!-- post-header -->
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
<div class="post-meta">
<span class="post-time"> {{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }} </span>
2017-08-27 14:38:42 +00:00
{{ with .Params.categories -}}
<div class="post-category">
{{ range . }}
<a href="{{ "categories" | relLangURL }}/{{ . | urlize }}/"> {{ . }} </a>
{{ end }}
2017-08-27 14:38:42 +00:00
</div>
{{- end }}
{{ if .Site.Params.moreMeta -}}
2018-01-31 14:07:50 +00:00
<span class="more-meta"> {{ T "wordCount" .WordCount }} </span>
<span class="more-meta"> {{ T "readingTime" .ReadingTime }} </span>
{{- end }}
{{ if and .Site.Params.busuanzi.enable .Site.Params.busuanzi.pagePV -}}
{{ $valueSpan := printf `<span id="busuanzi_value_page_pv"><img src="%s" alt="spinner.svg"/></span>` ("img/spinner.svg" | relURL) -}}
2018-01-31 14:07:50 +00:00
<span id="busuanzi_container_page_pv" class="more-meta"> {{ printf (T "pagePV") $valueSpan | safeHTML }} </span>
{{- end }}
2017-08-27 14:38:42 +00:00
</div>
</header>
<!-- TOC -->
{{ partial "post/toc.html" . }}
<!-- Outdated Info Warning -->
{{ partial "post/outdated-info-warning.html" . }}
2017-08-27 14:38:42 +00:00
<!-- Content -->
<div class="post-content">
{{ .Content }}
</div>
<!-- Copyright -->
{{ partial "post/copyright.html" . }}
<!-- Reward -->
{{ partial "post/reward.html" . }}
<footer class="post-footer">
{{ with .Params.tags -}}
<div class="post-tags">
{{ range . }}
<a href="{{ "tags" | relLangURL }}/{{ . | urlize }}/">{{ . }}</a>
2017-08-27 14:38:42 +00:00
{{ end }}
</div>
{{- end }}
<!-- Post Pagination -->
<nav class="post-nav">
{{ with .NextInSection }}
<a class="prev" href="{{ .URL }}">
<i class="iconfont icon-left"></i>
<span class="prev-text nav-default">{{ .Title }}</span>
2018-01-31 14:07:50 +00:00
<span class="prev-text nav-mobile">{{ T "prevPost" }}</span>
2017-08-27 14:38:42 +00:00
</a>
{{- end }}
{{ with .PrevInSection }}
<a class="next" href="{{ .URL }}">
<span class="next-text nav-default">{{ .Title }}</span>
<span class="next-text nav-mobile">{{ T "nextPost" }}</span>
2017-08-27 14:38:42 +00:00
<i class="iconfont icon-right"></i>
</a>
{{- end }}
</nav>
</footer>
</article>
{{- end }}