forked from projects/fipamo
27 lines
776 B
Twig
27 lines
776 B
Twig
{% extends "dash/_frame.twig" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash.css?=adfd">
|
|
{% endblock %}
|
|
|
|
{% 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 %}
|
|
|
|
{% block javascripts %}
|
|
<script src="/assets/scripts/Start.js" type="text/javascript"></script>
|
|
{% endblock %} |