mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-16 23:15:14 +00:00
15 lines
330 B
Text
15 lines
330 B
Text
{% extends "base" %}
|
|
{% import "macros" as macros %}
|
|
|
|
{% 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 %}
|
|
{% endblock content %}
|