publik-base-theme/templates/variants/haute-garonne-cd31/combo/feed-cell.html

14 lines
343 B
HTML

{% load i18n %}
{% block cell-content %}
{% if cell.title %}
<h2 class="cell--title">{{ cell.title }}</h2>
{% endif %}
<div class="feed-content links-list">
<ul>
{% for entry in feed.entries %}
<li><a href="{% firstof entry.link "#" %}">{{entry.title}}</a></li>
{% endfor %}
</ul>
</div>
{% endblock %}