2017-07-10 20:50:11 +02:00
|
|
|
{% extends "zerver/base.html" %}
|
|
|
|
|
|
|
|
{# A base template for stuff like login, register, etc.
|
|
|
|
|
|
|
|
Not inside the app itself, but covered by the same structure,
|
|
|
|
hence the name.
|
|
|
|
#}
|
|
|
|
|
2017-09-29 01:31:55 +02:00
|
|
|
{% block porticocustomhead %}
|
2018-04-24 17:45:31 +02:00
|
|
|
{% stylesheet 'portico' %}
|
|
|
|
{{ render_bundle('translations') }}
|
2017-09-29 01:31:55 +02:00
|
|
|
{{ render_bundle('portico') }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-07-10 20:50:11 +02:00
|
|
|
{% block content %}
|
|
|
|
<div class="portico-container help">
|
|
|
|
<div class="portico-wrap">
|
2017-08-04 02:48:07 +02:00
|
|
|
{% include 'zerver/portico-header.html' %}
|
2017-07-10 20:50:11 +02:00
|
|
|
<div class="app portico-page">
|
|
|
|
<div class="app-main portico-page-container{% block hello_page_container %}{% endblock %}">
|
|
|
|
{% block portico_content %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|