Plume/templates/instance/index.tera

19 lines
539 B
Text
Raw Normal View History

2018-05-09 19:09:52 +00:00
{% extends "base" %}
{% block title %}
{{ instance.name }}
{% endblock title %}
{% block content %}
<h1>Welcome on {{ instance.name }}</h1>
<h2>Latest articles</h2>
{% for article in recents %}
<div>
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
<p>{{ article.post.content | escape | truncate(length=200) }}…</p>
<p>By {{ article.author.display_name }} ⋅ {{ article.date | date(format="%B %e") }}</p>
</div>
{% endfor %}
2018-05-09 19:09:52 +00:00
{% endblock content %}