15 lines
590 B
HTML
15 lines
590 B
HTML
{% extends 'base.html' %} {% block title %}Strona główna | pdlzbs{% endblock %}
|
|
{% load static tailwind_tags %} {% block content %}
|
|
<div class="flex flex-col items-center gap-4">
|
|
{% for calendar in calendars %}
|
|
<article
|
|
class="prose w-full py-4 prose-h1:text-center {% if forloop.first %} pt-0 {% endif %} {% if not forloop.last %} border-b border-stone-200 {% endif %}"
|
|
>
|
|
<h1>Kalendarz {{ calendar.year }}</h1>
|
|
<div>{{ calendar.content | safe }}</div>
|
|
</article>
|
|
{% empty %}
|
|
<span class="py-4 text-xl">Brak dokumentów</span>
|
|
{% endfor %} {% endblock %}
|
|
</div>
|