MitseaBlog/themes/hugo-theme-stack/layouts/partials/article/article.html

11 lines
360 B
HTML
Raw Permalink Normal View History

2022-10-11 17:34:41 +08:00
<article class="{{ if .Params.image }}has-image {{ end }}main-article">
{{ partial "article/components/header" . }}
{{ partial "article/components/content" . }}
{{ partial "article/components/footer" . }}
{{ if or .Params.math .Site.Params.article.math }}
{{ partialCached "article/components/math.html" . }}
{{ end }}
</article>