{% extends 'base.html' %} {% block title %}Strona główna | labs{% endblock %} {% load static tailwind_tags wysiwyg %} {% block content %}
{% for post in left_posts %}
{% if post.show_title %}

{{ post.title }}

{% endif %}
{% readmore post %}
{% buttons post.buttons %}
{% if not forloop.last %}
{% endif %} {% endfor %}

Aktualności


{% for post in middle_posts %}
{% if post.show_title %}

{{ post.title }}

{% endif %}
{% readmore post %}
{% buttons post.buttons %}
{% if not forloop.last %}
{% endif %} {% endfor %}
{% for post in right_posts %}
{% if post.show_title %}

{{ post.title }}

{% endif %}
{% readmore post %}
{% buttons post.buttons %}
{% if not forloop.last %}
{% endif %} {% endfor %}
{% endblock %}