mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
18 lines
526 B
HTML
18 lines
526 B
HTML
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
|
|
{% extends 'themes/' + theme() + '/base.html' %}
|
|
{% else %}
|
|
{% extends "base.html" %}
|
|
{% endif %} %}
|
|
{% from 'bootstrap/form.html' import render_form, render_field %}
|
|
|
|
{% block app_content %}
|
|
<div class="row">
|
|
<div class="col-12 col-md-8 position-relative main_pane">
|
|
{% block title %}<h1>{{ title }}</h1>{% endblock %}
|
|
{{ render_form(form) }}
|
|
</div>
|
|
|
|
{% include "_side_pane.html" %}
|
|
|
|
</div>
|
|
{% endblock %}
|