diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 0966f06..ce2a241 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,15 +8,19 @@ layout: compress {% include head.html %} <body> - <main class="wrapper"> - {% include header.html %} + <main class="wrapper"> + <nav class="navigation"> + {% include header.html %} + </nav> - <div class="content"> - {{ content }} - </div> + <div class="content"> + {{ content }} + </div> - {% include footer.html %} - </main> + <footer class="footer"> + {% include footer.html %} + </footer> + </main> </body> </html> |