diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-07 12:17:54 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-07 12:17:54 +0300 |
commit | a646efb49b9fe1ccdfe948f7a9bb4d3e6b1b56a4 (patch) | |
tree | 51b03dcccd4a6a95ec90073c3b667ffa36bde83c /_layouts/page.html | |
parent | 7bc283dc5e848c93f502da16bd6326be4007baf5 (diff) | |
download | popov.link-a646efb49b9fe1ccdfe948f7a9bb4d3e6b1b56a4.tar.xz popov.link-a646efb49b9fe1ccdfe948f7a9bb4d3e6b1b56a4.zip |
Layers of a new theme
Signed-off-by: Valentin Popov <valentineus@gmail.com>
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> |