presentation-rust-webapps/simpler_text_board/templates/index.html.tera
2021-04-14 23:02:09 +02:00

11 lines
213 B
Plaintext

{% extends "base" %}
{% block content %}
<h1> simpler text board</h1>
<ul>
{% for post in posts %}
<li>{{ loop.index }} - {{ post.title }} - {{ post.author }}</li>
{% endfor %}
</ul>
{% endblock content %}