website/themes/hugo-theme-wave/layouts/partials/single_article.html
Paul Lecuq cbd1c10fff
All checks were successful
continuous-integration/drone/push Build is passing
updated website theme
2023-12-16 00:45:03 +01:00

19 lines
566 B
HTML

<section id="main">
<article>
<div class="article-inner">
{{ if and (isset .Params "banner") (not (eq .Params.banner "")) }}
<img src="{{ .Site.BaseURL }}/{{ .Params.banner }}" class="article-banner">
{{ end }}
{{ partial "article_header" . }}
<div class="article-entry" itemprop="articleBody">
{{ .Content }}
</div>
{{ partial "article_footer" . }}
</div>
</article>
<section id="comments">
<div id="disqus_thread">
{{ template "_internal/disqus.html" . }}
</div>
</section>
</section>