diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 93461ec..d58d069 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,19 +2,21 @@ <html lang="en"> {% include head.html %} +<body> + <div class="topbar"></div> + <div class="body-wrap"> + <div class="container"> + <!-- {% include header.html %} --> - <body> - - <!-- {% include header.html %} --> - - <div class="page-content"> - <div class="wrapper"> - {{ content }} + <div class="page-content"> + <div class="wrapper"> + {{ content }} + </div> </div> - </div> - {% include footer.html %} - - </body> + {% include footer.html %} + </div> + </div> +</body> </html> |
