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.
20 lines
422 B
Twig
20 lines
422 B
Twig
{% extends "dash/_frame.twig" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash/start.css?=dfdfrtr">
|
|
{% endblock %}
|
|
|
|
{% block mainContent %}
|
|
{% if status %}
|
|
{% apply spaceless %}
|
|
{{ include("dash/partials/index.twig") }}
|
|
{% endapply %}
|
|
{% else %}
|
|
{{ include("dash/forms/login.twig") }}
|
|
{% endif %}
|
|
{% endblock %}
|