Files
universal_web_loco_rewrite/assets/views/home/index.html
Priec 622afc310d UI
2026-05-17 15:16:51 +02:00

24 lines
512 B
HTML

{% extends "base.html" %}
{% block title %}Home{% endblock title %}
{% block content %}
<h1>Home</h1>
<section>
<h2>Latest posts</h2>
{% if articles | length > 0 %}
<ul>
{% for article in articles %}
<li>
<a href="/blog/{{ article.slug }}">{{ article.title }}</a>
{% if article.excerpt %}<p>{{ article.excerpt }}</p>{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>No published posts yet.</p>
{% endif %}
</section>
{% endblock content %}