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

10 lines
255 B
HTML

{% load i18n %}
{% 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.description %}<p>{{entry.description}}</p>{% endif %}
{% endfor %}