avray: remove custom page_template-sidebar template (#48928)

page_template_sidebar is used to place sidebar after columns, $sidebar-position scss var is better for that.
This commit is contained in:
Thomas Jund 2020-11-27 15:21:16 +01:00
parent a7e2988ac0
commit 1b4e73b705
3 changed files with 2 additions and 16 deletions

View File

@ -283,7 +283,7 @@ nav {
#sidebar {
.cell {
margin-right: 0;
margin-left: 0;
}
.cell.titre-menu {
border-bottom: none;

View File

@ -1,6 +1,7 @@
$primary-color: #004171;
$width: 1200px;
$sidebar-position: right;
$font-color: black;
$font-family: Raleway, Arial, sans-serif;

View File

@ -1,15 +0,0 @@
{% extends "combo/page_template_sidebar.html" %}
{% load combo i18n %}
{% block combo-content %}
<div id="columns-wrapper">
<div id="columns">
{% trans "Content" as name %}
{% placeholder "content" name=name %}
</div>
</div>
<div id="sidebar">
{% trans "Sidebar" as name %}
{% placeholder "sidebar" name=name %}
</div>
{% endblock %}