{% extends "base.html" %} {% block content %} {% include "base_navbar.html" %} {% include "base_heading.html" %}
{% for i in feeds %}

{{ i.title }}

{{ i.created_on }}

{{ i.title }}

RSS

{{ i.description }}

{% if user.is_authenticated %} {% if user == i.user %} {% endif %} {% endif %}
{% endfor %}
{% endblock %}