pdlzbs/core/templates/home.html

29 lines
942 B
HTML

{% extends 'base.html' %} {% block title %}Strona główna | pdlzbs{% endblock %}
{% load static tailwind_tags %} {% block content %}
<div class="flex flex-col lg:flex-row justify-around gap-4">
{% if highlight %}
<article class="prose w-full basis-3/5">
<h1>{{ highlight.title }}</h1>
{{ highlight.content | safe }}
</article>
{% endif %}
<div class="flex flex-col basis-2/5 not-prose">
<h1
class="text-3xl pb-6 mb-4 border-b border-stone-500 border-dashed font-medium"
>
Aktualności PodlZBS
</h1>
{% for post in posts %}
<article
class="prose w-full py-4 {% if forloop.first %} pt-0 {% endif %} {% if not forloop.last %} border-b border-stone-400 {% endif %}"
>
<h2 class="mb-0">{{ post.title }}</h2>
{{ post.content | safe }}
</article>
{% empty %}
<span class="py-4 text-xl">Więcej wpisów nie ma</span>
{% endfor %}
</div>
</div>
{% endblock %}