Initial commit
Some checks are pending
Zola / build-and-deploy (push) Waiting to run

This commit is contained in:
Alejandro Guerrero 2025-12-14 00:46:02 +01:00
commit 57e36978f6
Signed by: alejandrogs73
GPG key ID: 1CFF10953BEE333C
7 changed files with 158 additions and 0 deletions

18
templates/index.html Normal file
View file

@ -0,0 +1,18 @@
{% 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 %}