article.html 360 B

1234567891011
  1. <article class="{{ if .Params.image }}has-image {{ end }}main-article">
  2. {{ partial "article/components/header" . }}
  3. {{ partial "article/components/content" . }}
  4. {{ partial "article/components/footer" . }}
  5. {{ if or .Params.math .Site.Params.article.math }}
  6. {{ partialCached "article/components/math.html" . }}
  7. {{ end }}
  8. </article>