diff options
author | Valentin Popov <info@valentineus.link> | 2018-04-18 00:07:49 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-04-18 00:07:49 +0300 |
commit | e1a9f63dc93b8bccdc8fa40ef92359091460d38c (patch) | |
tree | 2d3befd95108d6c274b0469c68a4511a25d7a9d0 | |
parent | 5a648c6a108073f7ac6dc8b3276e413e4157e7c4 (diff) | |
download | popov.link-e1a9f63dc93b8bccdc8fa40ef92359091460d38c.tar.xz popov.link-e1a9f63dc93b8bccdc8fa40ef92359091460d38c.zip |
Page template
-rw-r--r-- | _layouts/page.html | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/_layouts/page.html b/_layouts/page.html index fdd735f..d513db4 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,11 +2,19 @@ layout: default --- -<section class="container page"> - <article> - <header> - <h1>{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}</h1> - </header> - {{ content }} - </article> -</section> +<div class="content"> + {% include navbar.html %} + + <article> + <header class="header"> + <h1 class="header-title"> + {{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }} + </h1> + <p class="header-annotation"> + {{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }} + </p> + </header> + + {{ content }} + </article> +</div> |