You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/templates/layout/basic.html

15 lines
507 B
HTML

{% set layout_name = "basic" %}
{% extends "layout/html5.html" %}
{% block body %}
{% if UserContext %}{% include "partials/nav.html" %}{% endif %}
<div class="slideout-panel" id="panel">
<div class="slideout-overlay"></div>
{% if UserContext %}{% include "partials/header_mobile.html" %}{% endif %}
<div class="main">
{% block content %}{% endblock %}
</div>
{% include "partials/footer.html" %}
</div>
{% if UserContext %}{% include "partials/login_dialog.html" %}{% endif %}
{% endblock %}