18 lines
584 B
HTML
18 lines
584 B
HTML
{% extends 'base.html' %}
|
|
<!---->
|
|
{% block title %}{{ focus.title | default:"-" }} | labs{% 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>
|
|
<div class="flex flex-wrap gap-4 items-center justify-center">
|
|
{% buttons focus.buttons %}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
{% endblock %}
|