{{ partial "paige/metadata.html" $page }}
diff --git a/layouts/partials/paige/article.html b/layouts/partials/paige/article.html
index ec5d792e..4ad255b4 100644
--- a/layouts/partials/paige/article.html
+++ b/layouts/partials/paige/article.html
@@ -36,6 +36,20 @@
{{ $class = $class | append "paige-published" }}
{{ end }}
+{{ with $page.Kind }}
+ {{ if eq . "home" }}
+ {{ $class = $class | append "paige-home" }}
+ {{ else if eq . "section" }}
+ {{ $class = $class | append "paige-section" }}
+ {{ else if eq . "page" }}
+ {{ $class = $class | append "paige-single" }}
+ {{ else if eq . "taxonomy" }}
+ {{ $class = $class | append "paige-taxonomy" }}
+ {{ else if eq . "term" }}
+ {{ $class = $class | append "paige-term" }}
+ {{ end }}
+{{ end }}
+
{{ $class = delimit ($class | uniq) " " }}