16 lines
622 B
HTML
16 lines
622 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 prose-h1:font-light">
|
|
{% for membership in memberships %}
|
|
<article
|
|
class="prose w-full py-4 {% if forloop.first %} pt-0 {% endif %} {% if not forloop.last %} border-b border-stone-400 {% endif %}"
|
|
>
|
|
<a href="{{ membership.attachment.url }}" target="_blank">
|
|
<h2 class="mb-0">{{ membership }}</h2>
|
|
</a>
|
|
</article>
|
|
{% empty %}
|
|
<span class="py-4 text-xl">Brak dokumentów</span>
|
|
{% endfor %} {% endblock %}
|
|
</div>
|