8👍
✅
If you add feeds
to your template context, you should be able to loop through it in your template:
<ul>
{% for entry in feeds.entries %}
<li><a href="{{entry.link}}">{{entry.title}}</a></li>
{% endfor %}
</ul>
Source:stackexchange.com