hugo-PaperMod/layouts/_default/single.html

45 lines
1.3 KiB
HTML
Raw Normal View History

2018-01-08 17:28:39 +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">
2018-01-08 17:28:39 +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>
2019-08-19 22:12:49 +02:00
{{ if .Params.tags }}
2018-01-08 17:28:39 +01:00
<footer class="post-footer">
<ul class="post-tags">
{{ range .Params.tags }}
2019-06-10 00:44:15 +02:00
<li><a href="{{ "tags/" | absURL }}{{ . | urlize }}/">{{ . }}</a></li>
2018-01-08 17:28:39 +01:00
{{ end }}
</ul>
</footer>
2019-08-19 22:12:49 +02:00
{{ end }}
2019-04-01 10:00:48 +02:00
<!-- Comments area start -->
2018-05-04 19:57:25 +02:00
{{ if not (eq .Params.comments false) }}
{{ if .Site.DisqusShortname }}
<div id="disqus_thread"></div>
<script>
var disqus_shortname = '{{ .Site.DisqusShortname }}';
2019-04-01 10:00:48 +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 -->
2018-05-04 19:57:25 +02:00
{{ end }}
{{ end }}
2018-01-08 17:28:39 +01:00
</article>
2019-04-01 10:00:48 +02:00
2018-03-13 04:58:42 +01:00
{{ partial "footer.html" . }}