diff options
author | Vitaly Takmazov | 2020-10-08 18:38:03 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-10-08 18:38:03 +0300 |
commit | 78be8499ff86aaefca14d91abe2f1dd1ff98fa80 (patch) | |
tree | cfd8fbd999f48015de00b3a0c5631204fc999455 /src/main/resources/templates/layouts/default.html | |
parent | 04f0db43fa33dd3752edc9437c67c85a364b5ff4 (diff) |
Desktop layout fixes
Diffstat (limited to 'src/main/resources/templates/layouts/default.html')
-rw-r--r-- | src/main/resources/templates/layouts/default.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/main/resources/templates/layouts/default.html b/src/main/resources/templates/layouts/default.html index a836f4c4..d3ce7dce 100644 --- a/src/main/resources/templates/layouts/default.html +++ b/src/main/resources/templates/layouts/default.html @@ -36,14 +36,18 @@ <body id="body" {% if visitor.uid > 0 %}data-hash="{{visitor.authHash}}" {% endif %}> <div id="app"> {% include "views/partial/navigation" %} - <aside id="column"> - {% block column %} - {% endblock %} - </aside> - <section id="content" {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}" {% endif %} class="content--top"> + <div id="content_wrapper"> + <aside id="column"> + <div id="sidebar_wrapper"> + {% block column %} + {% endblock %} + </div> + </aside> + <section id="content" {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}" {% endif %} class="content--top"> {% block content %} {% endblock %} - </section> + </section> + </div> </div> </body> |