diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 042223c..3a374cf 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -71,9 +71,11 @@ {{ end }} {{ define "main" }} - {{ .Content }} + <article class="markdown"> + {{- .Content -}} + </article> {{ end }} {{ define "toc" }} - {{ .TableOfContents }} + {{ partial "docs/toc" . }} {{ end }} |