{% extends "zerver/base.html" %} {# The app itself. #} {# Includes some other templates as tabs. #} {% load compressed %} {% load minified_js %} {% block page_params %} {# Insert parameters, which have been encoded with JSONEncoderForHTML. #} {% endblock %} {% block customhead %} {% if nofontface %} {# We can't use @font-face on qtwebkit, so use differently minified CSS #} {% compressed_css 'app-fontcompat' %} {% else %} {% compressed_css 'app' %} {% endif %} {% minified_js 'app' %} {% if debug %} {% minified_js 'app_debug' %} {% endif %} {% endblock %} {% block content %}
{% include "zerver/navbar.html" %}
{% include "zerver/left-sidebar.html" %}
{% include "zerver/home.html" %}
{% include "zerver/subscriptions.html" %}
{% if show_admin %}
{% include "zephyr/administration.html" %}
{% endif %}
{% include "zerver/settings.html" %}
{% if show_debug %}
{% include "zerver/debug.html" %}
{% endif %}
{% include "zerver/right-sidebar.html" %}
{% include "zerver/keyboard_shortcuts.html" %} {% include "zerver/markdown_help.html" %} {% include "zerver/invite_user.html" %} {% include "zerver/bankruptcy.html" %} {% include "zerver/logout.html" %} {% include "zerver/tutorial_finale.html" %}
{% endblock %}