diff options
| -rw-r--r-- | _layouts/default.html | 15 | 
1 files changed, 9 insertions, 6 deletions
| diff --git a/_layouts/default.html b/_layouts/default.html index 7fa5693..0966f06 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,17 +3,20 @@ layout: compress  ---  <!DOCTYPE html> -<html lang="{{ site | smartify | strip_html | normalize_whitespace }}"> +<html lang="{{ site.lang | strip_newlines | strip_html | strip | slugify }}">  {% include head.html %}  <body> -    {% include header.html %} -    {% include icons.html %} +    <main class="wrapper"> +        {% include header.html %} -    <section class="main"> -        {{ content | normalize_whitespace }} -    </section> +        <div class="content"> +            {{ content }} +        </div> + +        {% include footer.html %} +    </main>  </body>  </html> | 
