Use wrapper to prevent password change popups from screwing up the layout

This commit is contained in:
2021-12-27 23:14:50 +00:00
parent c112d95a41
commit ab43387f06
3 changed files with 17 additions and 12 deletions

View File

@ -18,19 +18,21 @@
{{block "more-head" .}}{{end}}
</head>
<body>
<div id="sidebar">
{{block "sidebar" .}}
{{template "budget-sidebar" .}}
{{end}}
</div>
<div id="content">
<div class="container" id="head">
{{template "title" .}}
<div id="wrapper">
<div id="sidebar">
{{block "sidebar" .}}
{{template "budget-sidebar" .}}
{{end}}
</div>
<div class="container col-lg-12" id="content">
{{template "main" .}}
<div id="content">
<div class="container" id="head">
{{template "title" .}}
</div>
<div class="container col-lg-12" id="content">
{{template "main" .}}
</div>
{{block "new" .}}{{end}}
</div>
{{block "new" .}}{{end}}
</div>
</body>
</html>