{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ "Your feed" | _ }} {% endblock title %} {% block content %}

{{ "Your feed" | _ }}

{% if articles | length > 0 %}
{% for article in articles %} {{ macros::post_card(article=article) }} {% endfor %}
{{ macros::paginate(page=page, total=n_pages) }} {% else %}

{{ "Nothing to see here yet. Try to follow more people." | _ }}

{% endif %} {% endblock content %}