diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 02:43:39 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 02:43:39 +0300 |
commit | 08f0f5d5289685a8385ffd06bc774aefc4f17134 (patch) | |
tree | 54447091d42595f6be6b738ba7c2d9479eb7cf4a /_layouts/default.html | |
parent | a28dacb4170c1aa54457dd3373ca3df97d76615c (diff) | |
download | popov.link-08f0f5d5289685a8385ffd06bc774aefc4f17134.tar.xz popov.link-08f0f5d5289685a8385ffd06bc774aefc4f17134.zip |
Standard template
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 1030914..d20b4e0 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,18 +3,18 @@ layout: compress --- <!DOCTYPE html> -<html lang="{{ site.lang | strip_newlines | strip_html | strip | slugify }}"> +<html class="no-js" lang="{{ site.lang | strip_newlines | strip_html | strip | slugify }}"> {% include head.html %} <body> {% include navbar.html %} - <main> + <main class="container" role="main"> {{ content }} </main> - {% include footer.html %} + {% include javascript.html %} </body> </html> |