Remove sidebar second from page template; we don't have that region

This commit is contained in:
benjamin melançon 2019-07-31 19:55:51 -04:00
parent f1db5ae8f7
commit eb0d47aab0

View file

@ -106,25 +106,6 @@
</aside>
{% endif %}
{% endblock sidebar_first %}
{% block sidebar_second %}
{# Sidebar second #}
{% if page.sidebar_second %}
{% if not page.sidebar_second_attributes %}
{%
set page = page|merge({
'sidebar_second_attributes': create_attribute().addClass([
'sidebar-second',
'column',
'is-2',
]),
})
%}
{% endif %}
<aside{{page.sidebar_second_attributes|without('role')}} role="complimentary>
{{ page.sidebar_second }}
</aside>
{% endif %}
{% endblock sidebar_second %}
</div>
{{ page.content_bottom }}
</main>