hugo-PaperMod/layouts/_default/single.html

45 lines
1.4 KiB
HTML
Raw Normal View History

2020-03-09 16:56:47 +01:00
{{- partial "header.html" . }}
2019-04-01 10:00:48 +02:00
2019-03-31 14:32:06 +02:00
<article class="post-single">
2018-01-08 17:28:39 +01:00
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
2019-03-31 14:32:06 +02:00
<div class="post-meta">
2020-03-09 16:56:47 +01:00
{{- if or .Params.author .Site.Params.author }}
{{- .Params.author | default .Site.Params.author }} · {{ end }}
2019-08-19 22:12:49 +02:00
{{- .Date.Format "January 2, 2006" -}}
2019-03-31 14:32:06 +02:00
</div>
2018-01-08 17:28:39 +01:00
</header>
<div class="post-content">{{ .Content }}</div>
2020-03-09 16:56:47 +01:00
{{- if .Params.tags }}
2018-01-08 17:28:39 +01:00
<footer class="post-footer">
<ul class="post-tags">
2020-03-09 16:56:47 +01:00
{{- range .Params.tags }}
{{- $href := print (absURL "tags/") (urlize .) }}
2019-08-21 06:03:12 +02:00
<li><a href="{{ $href }}">{{ . }}</a></li>
2020-03-09 16:56:47 +01:00
{{- end }}
2018-01-08 17:28:39 +01:00
</ul>
</footer>
2020-03-09 16:56:47 +01:00
{{- end }}
2019-04-01 10:00:48 +02:00
<!-- Comments area start -->
2020-03-09 16:56:47 +01:00
{{- if not (eq .Params.comments false) }}
{{- if .Site.DisqusShortname }}
2018-05-04 19:57:25 +02:00
<div id="disqus_thread"></div>
<script>
var disqus_shortname = '{{ .Site.DisqusShortname }}';
2020-07-20 16:23:30 +02:00
(function () {
2018-07-06 05:14:28 +02:00
var d = document, s = d.createElement('script');
2018-05-04 19:57:25 +02:00
s.src = 'https://' + disqus_shortname + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>
Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
2019-04-01 10:00:48 +02:00
<!-- Comments area end -->
2020-03-09 16:56:47 +01:00
{{- end }}
{{- end }}
2018-01-08 17:28:39 +01:00
</article>
2019-04-01 10:00:48 +02:00
2020-07-20 16:23:30 +02:00
{{- partial "footer.html" . }}