24 lines
593 B
Plaintext
24 lines
593 B
Plaintext
|
{% extends "base" %}
|
||
|
{% import "macros" as macros %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ "Your feed" | _ }}
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>
|
||
|
{{ "Your feed" | _ }}
|
||
|
</h1>
|
||
|
|
||
|
{% if articles | length > 0 %}
|
||
|
<div class="cards">
|
||
|
{% for article in articles %}
|
||
|
{{ macros::post_card(article=article) }}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{{ macros::paginate(page=page, total=n_pages) }}
|
||
|
{% else %}
|
||
|
<p class="center">{{ "Nothing to see here yet. Try to follow more people." | _ }}</p>
|
||
|
{% endif %}
|
||
|
{% endblock content %}
|