website/themes/hugo-theme-wave/layouts/partials/single_article.html

23 lines
570 B
HTML
Raw Normal View History

2020-01-12 14:14:15 +01:00
<section id="main">
2020-01-12 21:05:46 +01:00
<article>
<div class="article-inner">
{{ if and (isset .Params "banner") (not (eq .Params.banner "")) }}
2022-08-08 21:00:45 +02:00
<img src="{{ .Site.BaseURL }}/{{ .Params.banner }}" class="article-banner">
2020-01-12 21:05:46 +01:00
{{ end }}
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
{{ partial "article_header" . }}
<div class="article-entry" itemprop="articleBody">
{{ .Content }}
</div>
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
{{ partial "article_footer" . }}
</div>
</article>
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
<section id="comments">
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
<div id="disqus_thread">
{{ template "_internal/disqus.html" . }}
</div>
</section>
</section>