hugo-theme-relearn/layouts/chapter/views/article.html
Sören Weber 4adf99061b
theme: make migration easier #891
content.html is meant to be overloaded by the user and it should just work
so every logic needs to be put somewhere else
2024-10-11 16:45:41 +02:00

13 lines
No EOL
501 B
HTML

<article class="chapter narrow">
<header class="headline">
{{- partial "content-header.html" . }}
</header>
{{ partial "heading-pre.html" . }}<div class="article-subheading">{{ T "Chapter" .Params.Weight }}</div>
{{ partial "heading.html" . }}{{ partial "heading-post.html" . }}
{{ partial "article-content.html" . }}
<footer class="footline">
{{- partial "content-footer.html" . }}
</footer>
</article>