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