diff options
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r-- | layouts/_default/baseof.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 359e544..33f8136 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -8,10 +8,18 @@ <link rel="stylesheet" href="{{ $style.RelPermalink }}" /> </head> <body> - {{ block "main" . }} - {{ end }} - {{ block "footer" . }} - {{ end }} + <aside id="sidebar"> + </aside> + <div id="main-and-footer"> + <main> + {{ block "main" . }} + {{ end }} + </main> + <footer> + {{ block "footer" . }} + {{ end }} + </footer> + </div> </body> </html> |