aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
diff options
context:
space:
mode:
authorValentin Popov <valentineus@gmail.com>2018-04-11 03:05:43 +0300
committerValentin Popov <valentineus@gmail.com>2018-04-11 03:17:34 +0300
commit187bf204d4b949ac314c992611ffa3f1d7bb1d83 (patch)
tree3f77336770c341f7b67fc488e0d5a3524948e685 /_layouts/default.html
parent76b7d849a19c32e3a2a91773be8ffad696d3ab22 (diff)
downloadpopov.link-187bf204d4b949ac314c992611ffa3f1d7bb1d83.tar.xz
popov.link-187bf204d4b949ac314c992611ffa3f1d7bb1d83.zip
Base layer
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to '_layouts/default.html')
-rw-r--r--_layouts/default.html15
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>