pdlzbs/core/templates/home-reverse.html

15 lines
474 B
HTML

{% extends 'base.html' %}
<!---->
{% block title %}{{ focus.title | default:"-" }} | pdlzbs{% endblock %}
<!---->
{% load static tailwind_tags wysiwyg %} {% block content %}
<div class="flex flex-col lg:flex-row justify-center gap-8">
<article class="prose bg-white shadow-md rounded-md p-8">
{% if focus.show_title %}
<h1 class="font-medium text-center">{{ focus.title }}</h1>
{% endif %}
<div>{% content focus %}</div>
</article>
</div>
{% endblock %}