diff options
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> |