blog/templates/index.html
Sergei Poljanski a4b677f898
All checks were successful
Build and Deploy to Production / check (push) Successful in 9s
Build and Deploy to Production / build (push) Successful in 25s
Build and Deploy to Production / deploy (push) Successful in 36s
blog: Zola site, nginx image, Forgejo deploy pipeline
2026-07-16 19:51:31 +04:00

12 lines
321 B
HTML

{% extends "base.html" %}
{% block content %}
<ul class="post-list">
{% for page in section.pages %}
<li>
<time datetime="{{ page.date }}">{{ page.date | date(format="%Y-%m-%d") }}</time>
<a href="{{ page.permalink }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
{% endblock content %}