{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ "All the articles of the Fediverse" | _ }} {% endblock title %} {% block content %}

{{ "All the articles of the Fediverse" | _ }}

{% if account %} {{ macros::tabs(links=['/', '/feed', '/federated', '/local'], titles=['Latest articles', 'Your feed', 'Federated feed', 'Local feed'], selected=3) }} {% else %} {{ macros::tabs(links=['/', '/federated', '/local'], titles=['Latest articles', 'Federated feed', 'Local feed'], selected=2) }} {% endif %}
{% for article in articles %} {{ macros::post_card(article=article) }} {% endfor %}
{{ macros::paginate(page=page, total=n_pages) }} {% endblock content %}