Back to Zulip

Portico

templates/zerver/portico.html

12.0488 B
Original Source

{% extends "zerver/base.html" %} {% set entrypoint = entrypoint|default("portico") %} {# A base template for stuff like login, register, etc. Not inside the app itself, but covered by the same structure, hence the name. #} {% block content %}

{% if not isolated_page %} {% include 'zerver/portico-header.html' %} {% endif %}

{% block portico_content %} {% endblock %}

{% if not isolated_page and not skip_footer %} {% include 'zerver/footer.html' %} {% endif %} {% endblock %}