mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 02:03:40 +00:00
23 lines
532 B
Twig
23 lines
532 B
Twig
{% extends "./layout/default" %}
|
|
{% block breadcrumbs %}
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item"><a href="#">Home</a></li>
|
|
<li class="breadcrumb-item active">Bread crumbs v1</li>
|
|
</ol>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<!-- Small boxes (Stat box) -->
|
|
|
|
<!-- Main row -->
|
|
<div id="dashboard"></div>
|
|
<!-- /.row (main row) -->
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="v2/js/dashboard.js" nonce="{{ JS_NONCE }}"></script>
|
|
{% endblock %}
|