diff options
Diffstat (limited to '_layouts/page.html')
-rw-r--r-- | _layouts/page.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/_layouts/page.html b/_layouts/page.html index 4d41ccc..0adbd61 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -3,4 +3,10 @@ layout: default --- <h1>{{ page.title }}</h1> +{% if page.twocolumn %} +<div class="two-column"> + {{ content }} +</div> +{% else %} {{ content }} +{% endif %} |