Hugo-theme-stack/layouts/partials/article/article.html

11 lines
360 B
HTML
Raw Normal View History

<article class="{{ if .Params.image }}has-image {{ end }}main-article">
{{ partial "article/components/header" . }}
2020-08-22 07:20:08 -04:00
{{ partial "article/components/content" . }}
2020-08-22 07:20:08 -04:00
{{ partial "article/components/footer" . }}
2020-09-21 10:22:44 -04:00
{{ if or .Params.math .Site.Params.article.math }}
{{ partialCached "article/components/math.html" . }}
{{ end }}
2020-08-22 07:20:08 -04:00
</article>