diff options
Diffstat (limited to 'ui/html/base.tmpl.html')
-rw-r--r-- | ui/html/base.tmpl.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ui/html/base.tmpl.html b/ui/html/base.tmpl.html index 58122a0..450f9c8 100644 --- a/ui/html/base.tmpl.html +++ b/ui/html/base.tmpl.html @@ -10,12 +10,14 @@ <title>{{ template "title" .}} - DED</title> </head> <body> - <header> - {{ template "nav" . }} - </header> - <main> - {{ template "main" . }} <!-- DONT FORGET THE DOT!!! --> - </main> + <div class="content"> + <header> + {{ template "nav" . }} + </header> + <main> + {{ template "main" . }} <!-- DONT FORGET THE DOT!!! --> + </main> + </div> </body> </html> {{ end }} |