diff options
author | Vitaly Takmazov | 2020-04-28 14:30:20 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-04-28 14:30:20 +0300 |
commit | c35693a6cc903107346dbdafb29a4026048d3e2e (patch) | |
tree | ff3ccc6e38f79d71cd8a2d04a5ee8c6f46e11fae /src/main/resources/templates/layouts/default.html | |
parent | 6e2f7b0a28adcc3ad79f72d2f3fb5ecbb20b9c09 (diff) |
CSS Grid -> position: fixed
Diffstat (limited to 'src/main/resources/templates/layouts/default.html')
-rw-r--r-- | src/main/resources/templates/layouts/default.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/main/resources/templates/layouts/default.html b/src/main/resources/templates/layouts/default.html index 5974e19b..a836f4c4 100644 --- a/src/main/resources/templates/layouts/default.html +++ b/src/main/resources/templates/layouts/default.html @@ -36,16 +36,14 @@ <body id="body" {% if visitor.uid > 0 %}data-hash="{{visitor.authHash}}" {% endif %}> <div id="app"> {% include "views/partial/navigation" %} - <div id="wrapper"> - <section id="content" {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}" {% endif %} class="content--top"> + <aside id="column"> + {% block column %} + {% endblock %} + </aside> + <section id="content" {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}" {% endif %} class="content--top"> {% block content %} {% endblock %} - </section> - <aside id="column"> - {% block column %} - {% endblock %} - </aside> - </div> + </section> </div> </body> |