14 lines
331 B
HTML
14 lines
331 B
HTML
<div class="block block-50">
|
|
{% if block.name %}
|
|
<div class="block-header">{{ block.name }}</div>
|
|
{% endif %}
|
|
|
|
<div class="feeds">
|
|
{% for feed in feeds %}
|
|
{% if feed.block == block %}
|
|
{% include feed.template %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|