hugo-PaperMod/layouts/_default/single.html
nanxiaobei 599fbd4e22 🔒 Fix link
2018-07-06 11:14:28 +08:00

43 lines
1.4 KiB
HTML

{{ partial "header.html" . }}
<article class="post post-view">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
<p class="post-meta">
{{- if or .Params.author .Site.Params.author -}}
{{ .Params.author | default .Site.Params.author }} · {{ end }}
{{- .Date.Format "2006.1.2" -}}
</p>
</header>
<div class="post-content">{{ .Content }}</div>
<footer class="post-footer">
{{ if .Params.tags }}
<ul class="post-tags">
{{ range .Params.tags }}
<li><a href="{{$.Site.BaseURL}}tags/{{ . | urlize }}/">{{ . }}</a></li>
{{ end }}
</ul>
{{ end }}
</footer>
<!-- Comments system area start -->
{{ if not (eq .Params.comments false) }}
{{ if .Site.DisqusShortname }}
<div id="disqus_thread"></div>
<script>
var disqus_shortname = '{{ .Site.DisqusShortname }}';
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
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>
<!-- Comments system area end -->
{{ end }}
{{ end }}
</article>
{{ partial "footer.html" . }}