{% extends 'base.html' %} {% load i18n reader bulma_tags static %} {% block title %}{% trans "Feed" %} {{ feed.name }}{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{% trans "Feed" %} {{ feed.name }} • {{ feed.domain }}

{% if subscription %} {% trans "Unsubscribe" %} {% trans "Mark as read" %} {% else %} {% trans "Subscribe" %} {% endif %}
{% if subscription %}
{% if subscription.tags %}
{% for tag in subscription.tags %} {{ tag }} {% endfor %}
{% else %} Add tags to group feeds together {% endif %}
{% endif %} {% include 'reader/_articles.html' %} {% endblock %}