{% extends "layout.html" %} {% block content %}

Add a feed

{{ form.hidden_tag() }} {{ form.title.label }} {{ form.title(class_="form-control") }} {% for error in form.title.errors %} {{ error }}{% endfor %} {{ form.link.label }} {{ form.link(class_="form-control") }} {% for error in form.link.errors %} {{ error }}{% endfor %} {{ form.site_link.label }} {{ form.site_link(class_="form-control") }} {% for error in form.site_link.errors %} {{ error }}{% endfor %} {{ form.submit(class_="btn") }}

Your subscriptions

You are subscribed to {{ nb_feeds }} feeds.

{{ nb_articles }} articles are stored in the database with {{ nb_unread_articles }} unread articles.

{% endblock %}