I've created a custom template called "columns.html.twig" in the "quark/templates/modular" folder but when I try to create a new modular with this template active my menu disappears.
The code contained is:
{% extends 'partials/base.html.twig' %}
{% block content %}
<table>
<tr>
{% for column in page.content|split('<hr />') %}
<td>{{ column }}</td>
{% endfor %}
</tr>
</table>
{% endblock %}