18 lines
602 B
HTML
18 lines
602 B
HTML
{% extends 'base.html' %}
|
|
<!---->
|
|
{% block title %}Grand Prix Białegostoku | pdlzbs{% endblock %}
|
|
<!---->
|
|
{% load static tailwind_tags wysiwyg %} {% block content %}
|
|
<div class="flex flex-col gap-8 justify-center lg:flex-row">
|
|
<article class="p-8 w-full max-w-screen-md bg-white rounded-md shadow-md prose">
|
|
{% if focus.show_title %}
|
|
<h1 class="font-medium text-center">{{ focus.title }}</h1>
|
|
{% endif %}
|
|
<div>{% content focus %}</div>
|
|
<div class="flex flex-wrap gap-4 justify-center items-center">
|
|
{% buttons focus.buttons %}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
{% endblock %}
|