2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/base.html" %}
|
2019-10-23 07:46:34 +02:00
|
|
|
{% set entrypoint = entrypoint|default("portico") %}
|
2013-02-25 02:59:59 +01:00
|
|
|
|
2016-04-21 08:48:33 +02:00
|
|
|
{# A base template for stuff like login, register, etc.
|
2012-10-16 06:03:29 +02:00
|
|
|
|
2016-04-21 08:48:33 +02:00
|
|
|
Not inside the app itself, but covered by the same structure,
|
|
|
|
hence the name.
|
|
|
|
#}
|
2012-10-16 06:03:29 +02:00
|
|
|
|
2012-09-25 22:58:59 +02:00
|
|
|
{% block content %}
|
2017-10-04 21:20:40 +02:00
|
|
|
<div class="portico-container" data-platform="{{ platform }}">
|
2017-06-16 04:43:18 +02:00
|
|
|
<div class="portico-wrap">
|
2020-01-28 23:57:52 +01:00
|
|
|
{% if not isolated_page %}
|
2017-08-04 02:48:07 +02:00
|
|
|
{% include 'zerver/portico-header.html' %}
|
2020-01-28 23:57:52 +01:00
|
|
|
{% endif %}
|
2017-08-08 19:32:16 +02:00
|
|
|
<div class="app portico-page {% block portico_class_name %}{% endblock %}">
|
2017-06-16 04:43:18 +02:00
|
|
|
<div class="app-main portico-page-container{% block hello_page_container %}{% endblock %}">
|
|
|
|
{% block portico_content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2017-02-28 04:44:31 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-25 18:26:37 +02:00
|
|
|
<div class="alert-box"></div>
|
2020-01-28 23:57:52 +01:00
|
|
|
{% if not isolated_page %}
|
2017-06-16 04:43:18 +02:00
|
|
|
{% include 'zerver/footer.html' %}
|
2020-01-28 23:57:52 +01:00
|
|
|
{% endif %}
|
2013-09-13 06:06:10 +02:00
|
|
|
</div>
|
2012-09-25 22:58:59 +02:00
|
|
|
{% endblock %}
|