hugo-theme-stack-stars/layouts/partials/article/article.html

11 lines
360 B
HTML
Raw Permalink Normal View History

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