63 lines
1.5 KiB
Twig
63 lines
1.5 KiB
Twig
<div class="grid">
|
|
|
|
{% if nodes_prods %}
|
|
{% for node in nodes_prods %}
|
|
<div class="col small-col-12 med-col-4 large-col-{{ node.cols }}">
|
|
<div class="wrapper">
|
|
{{ node.build }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if nodes_statics %}
|
|
{% for node in nodes_statics %}
|
|
<div class="col small-col-12 med-col-4 large-col-{{ node.cols }}">
|
|
<div class="wrapper">
|
|
{{ node.build }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if lastdocs %}
|
|
<div class="lastdocs-home col small-col-12 med-col-4 large-col-2">
|
|
<div class="wrapper">
|
|
{{ lastdocs }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if agenda %}
|
|
<div class="agenda col small-col-12 med-col-4 large-col-2">
|
|
<div class="wrapper">
|
|
{{ agenda }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if collection_link_rendered %}
|
|
<div class="collection-link col small-col-12 med-col-4 large-col-3">
|
|
<div class="wrapper">
|
|
{{ collection_link_rendered }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if production_link_rendered %}
|
|
<div class="production-link col small-col-12 med-col-4 large-col-3">
|
|
<div class="wrapper">
|
|
{{ production_link_rendered }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if agenda_link_rendered %}
|
|
<div class="agenda-link col small-col-12 med-col-4 large-col-3">
|
|
<div class="wrapper">
|
|
{{ agenda_link_rendered }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|