Plume/templates/instance/index.tera

16 lines
330 B
Plaintext
Raw Normal View History

2018-05-09 21:09:52 +02:00
{% extends "base" %}
{% import "macros" as macros %}
2018-05-09 21:09:52 +02:00
{% block title %}
{{ instance.name }}
{% endblock title %}
{% block content %}
<h1>Welcome on {{ instance.name }}</h1>
<h2>Latest articles</h2>
{% for article in recents %}
{{ macros::post_card(article=article) }}
{% endfor %}
2018-05-09 21:09:52 +02:00
{% endblock content %}