2024-10-04 22:58:07 -07:00
|
|
|
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
|
|
|
|
{% extends 'themes/' + theme() + '/base.html' %}
|
|
|
|
{% else %}
|
|
|
|
{% extends "base.html" %}
|
2024-12-10 03:16:52 -08:00
|
|
|
{% endif %}
|
2024-10-04 22:58:07 -07:00
|
|
|
{% from 'bootstrap/form.html' import render_form %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-md-8 position-relative main_pane">
|
2024-12-09 04:47:54 -08:00
|
|
|
{% include "post/_breadcrumb_nav.html" %}
|
2024-10-04 22:58:07 -07:00
|
|
|
<h1 class="mt-2">{{ _('Cross-post %(post_name)s', post_name=post.title) }}</h1>
|
|
|
|
{{ render_form(form) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|