alejandrogs.es/templates/index.html
alejandrogs73 57e36978f6
Some checks are pending
Zola / build-and-deploy (push) Waiting to run
Initial commit
2025-12-14 00:46:02 +01:00

18 lines
393 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
<div class="intro">
{{ section.content | safe }}
</div>
<h2>Últimas Entradas</h2>
<ul>
{% for page in section.pages %}
<li>
{{ page.date }} - <a href="{{ page.permalink }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
{% endblock content %}