diff options
author | Valentin Popov <info@valentineus.link> | 2019-05-03 03:02:31 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-05-03 03:02:31 +0300 |
commit | 5668edea38da9fd1cad629db9c768ff19e62e094 (patch) | |
tree | 80f9ecfb2ad32304c61d1f7aecae955d7cf4ecf2 /_layouts/page.html | |
parent | 515a3ed0a74bdc10861c12f3798b19c3c9ff44f9 (diff) | |
download | popov.link-5668edea38da9fd1cad629db9c768ff19e62e094.tar.xz popov.link-5668edea38da9fd1cad629db9c768ff19e62e094.zip |
Have added new structure sites
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_layouts/page.html')
-rw-r--r-- | _layouts/page.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/_layouts/page.html b/_layouts/page.html index 42c6c1c..561017a 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,10 +2,10 @@ layout: default --- -<article> - <hr /> +<main class="container" role="main"> + <header> + <h1>{{ page.title | default: site.title | strip_newlines | strip_html| strip | normalize_whitespace | smartify | xml_escape }}</h1> + </header> - <section role="article"> - {{ content }} - </section> -</article> + {{ content }} +</main> |