diff options
Diffstat (limited to '_layouts/page.html')
| -rw-r--r-- | _layouts/page.html | 19 | 
1 files changed, 11 insertions, 8 deletions
| diff --git a/_layouts/page.html b/_layouts/page.html index 67ac0c6..3ab07d9 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,12 +2,15 @@  layout: default  --- -<div class="page"> -    <!-- Header --> -    <h1 class="page-title"> -        {{ page.title | smartify | strip_html | normalize_whitespace }} -    </h1> - -    <!-- Contents --> -    {{ content | normalize_whitespace }} +<div class="container"> +    <div class="content"> +        <!-- Header --> +        <div class="page-heading"> +            {{ page.title | smartify | strip_html | normalize_whitespace }} +        </div> +        <!-- Contents --> +        <div class=markdown> +            {{ content | normalize_whitespace }} +        </div> +    </div>  </div> | 
