combo/combo/public/templates/combo/feed-cell.html

18 lines
438 B
HTML

{% load i18n %}
{% block cell-content %}
{% if cell.title %}
<h2>{{ cell.title }}</h2>
{% endif %}
{% include "combo/asset_picture_fragment.html" %}
<div class="feed-content">
{% for entry in feed.entries %}
{% if entry.link %}
<h3><a href="{{entry.link}}">{{entry.title}}</a></h3>
{% else %}
<h3>{{entry.title}}</h3>
{% endif %}
{% if entry.summary %}<div>{{entry.summary|safe}}</div>{% endif %}
{% endfor %}
</div>
{% endblock %}