fipamo/brain/views/dash/start.twig

28 lines
630 B
Twig
Raw Normal View History

{% extends "dash/_frame.twig" %}
{% block title %}
2022-04-16 22:21:57 +02:00
{{ title }}
{% endblock %}
{% block stylesheets %}
2022-04-16 22:21:57 +02:00
<link rel="stylesheet" type="text/css" href="/assets/css/dash.css?=adfdff">
{% endblock %}
2022-04-16 22:21:57 +02:00
{% block mainContent %}
<div id="dash-index">
<div id="dash-index-wrapper">
{% if status %}
{% apply spaceless %}
{{ include("dash/partials/index.twig") }}
{% endapply %}
{% else %}
{{ include("dash/forms/login.twig") }}
{% endif %}
</div>
</div>
{% endblock %}
2022-04-16 22:21:57 +02:00
{% block javascripts %}
<script src="/assets/scripts/Start.js?=dfdfsdf" type="text/javascript"></script>
{% endblock %}