allow hiding of list in category view
This commit is contained in:
parent
88a92c674d
commit
10012c0c52
1 changed files with 22 additions and 20 deletions
|
@ -21,13 +21,14 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{% if category.page %}
|
||||
{% if category.page.content %}
|
||||
<section>
|
||||
<div class="container">
|
||||
{{ category.page.content }}
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
{% if not category.page.hide_list %}
|
||||
<section class="no-padding">
|
||||
<div class="container-fluid">
|
||||
<div class="row no-gutter">
|
||||
|
@ -50,4 +51,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
|
Reference in a new issue