Files
firefly-iii/resources/views/v2/index.twig

36 lines
1.1 KiB
Twig
Raw Normal View History

{% extends "./v2/layout/default" %}
2020-11-07 14:05:42 +01:00
{% block breadcrumbs %}
2020-11-07 20:13:06 +01:00
{{ Breadcrumbs.render }}
2020-11-07 14:05:42 +01:00
{% endblock %}
{% block content %}
<!-- Small boxes (Stat box) -->
2022-01-02 07:22:04 +01:00
<div class="alert alert-info">
Hi there! The "v2"-layout is no longer receiving updates. Work will continue in "v3". This will be a fully functional
<a href="https://en.wikipedia.org/wiki/Single-page_application" class="alert-link">SPA</a>
based on the excellent <a href="https://quasar.dev/" class="alert-link">Quasar Framework</a> platform.
2022-01-02 07:49:40 +01:00
Your comments, ideas and feedback will not be lost.
2022-01-02 07:22:04 +01:00
</div>
<!-- Main row -->
<div id="dashboard"></div>
<!-- /.row (main row) -->
{% endblock %}
2020-11-15 14:02:49 +01:00
{% block control %}
<div>
<div class="p-3 control-sidebar-content">
<h5>{{ 'date_range'|_ }}</h5>
<hr class="mb-2">
<div id="calendar"></div>
<hr class="mb-2">
</div>
</div>
{% endblock %}
{% block styles %}
{% endblock %}
{% block scripts %}
<script src="v2/js/dashboard.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
{% endblock %}