pdlzbs/core/templates/home.html

23 lines
813 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 prose-h1:font-light">
<article class="prose w-full basis-3/5">
<h1>{{ highlight.title }}</h1>
{{ highlight.content | safe }}
</article>
<div class="flex flex-col basis-2/5">
<h1 class="text-3xl pb-6 mb-4 border-b border-stone-500 border-dashed">
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>
{% endfor %}
</div>
</div>
{% endblock %}