mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			179 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <base href="{{ route('index') }}/">
 | 
						|
    <title>Firefly
 | 
						|
        {% if title != "Firefly" %}
 | 
						|
            // {{ title }}
 | 
						|
        {% endif %}
 | 
						|
 | 
						|
        {% if subTitle %}
 | 
						|
            // {{ subTitle }}
 | 
						|
        {% endif %}
 | 
						|
    </title>
 | 
						|
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,700,300italic" type="ext/css" media="all"/>
 | 
						|
    <link rel="stylesheet" href="font-awesome/css/font-awesome.min.css" type="text/css" media="all"/>
 | 
						|
    <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css" media="all"/>
 | 
						|
    <link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css" type="text/css" media="all"/>
 | 
						|
    <link rel="stylesheet" href="css/metisMenu.min.css" type="text/css" media="all"/>
 | 
						|
    <link rel="stylesheet" href="css/sb-admin-2.css" type="text/css" media="all"/>
 | 
						|
    <!-- date range -->
 | 
						|
    <link rel="stylesheet" href="css/daterangepicker-bs3.css" type="text/css" media="all"/>
 | 
						|
 | 
						|
    <link rel="stylesheet" href="css/firefly.css" type="text/css" media="all"/>
 | 
						|
 | 
						|
 | 
						|
    {% block styles %}{% endblock %}
 | 
						|
 | 
						|
    <!-- favicons -->
 | 
						|
    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png?v=Lb54KlrQnz">
 | 
						|
    <link rel="icon" type="image/png" href="/favicon-32x32.png?v=Lb54KlrQnz" sizes="32x32">
 | 
						|
    <link rel="icon" type="image/png" href="/android-chrome-192x192.png?v=Lb54KlrQnz" sizes="192x192">
 | 
						|
    <link rel="icon" type="image/png" href="/favicon-96x96.png?v=Lb54KlrQnz" sizes="96x96">
 | 
						|
    <link rel="icon" type="image/png" href="/favicon-16x16.png?v=Lb54KlrQnz" sizes="16x16">
 | 
						|
    <link rel="manifest" href="/manifest.json?v=Lb54KlrQnz">
 | 
						|
    <link rel="shortcut icon" href="/favicon.ico?v=Lb54KlrQnz">
 | 
						|
    <meta name="msapplication-TileColor" content="#2d89ef">
 | 
						|
    <meta name="msapplication-TileImage" content="/mstile-144x144.png?v=Lb54KlrQnz">
 | 
						|
    <meta name="theme-color" content="#ffffff">
 | 
						|
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div id="wrapper">
 | 
						|
 | 
						|
    {% include 'partials/menu.twig' %}
 | 
						|
 | 
						|
    <div id="page-wrapper">
 | 
						|
 | 
						|
        <div class="row">
 | 
						|
            <div class="col-lg-12">
 | 
						|
                <h1 class="page-header">
 | 
						|
                    {% if mainTitleIcon %}
 | 
						|
                        <i class="hidden-xs fa {{ mainTitleIcon }}"></i>
 | 
						|
                    {% endif %}
 | 
						|
 | 
						|
                    {{ title }}
 | 
						|
 | 
						|
                    {% if subTitle %}
 | 
						|
                        <small>
 | 
						|
                            {% if subTitleIcon %}
 | 
						|
                                <i class="hidden-xs fa {{ subTitleIcon }}"></i>
 | 
						|
                            {% endif %}
 | 
						|
                            {{ subTitle }}
 | 
						|
                        </small>
 | 
						|
                    {% endif %}
 | 
						|
                    <small class="pull-right hidden-xs"><a href="#" id="help" data-route="{{ Route.getCurrentRoute.getName }}"><i
 | 
						|
                                    data-route="{{ Route.getCurrentRoute.getName }}" class="fa fa-question-circle"></i></a></small>
 | 
						|
                </h1>
 | 
						|
 | 
						|
            </div>
 | 
						|
            <!-- /.col-lg-12 -->
 | 
						|
        </div>
 | 
						|
 | 
						|
        {% include('partials/flashes.twig') %}
 | 
						|
        {% block content %}{% endblock %}
 | 
						|
 | 
						|
        <!-- this modal will contain the help-text -->
 | 
						|
        <div class="modal fade" id="helpModal">
 | 
						|
            <div class="modal-dialog">
 | 
						|
                <div class="modal-content">
 | 
						|
                    <div class="modal-header">
 | 
						|
                        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">{{ 'close'|_ }}</span>
 | 
						|
                        </button>
 | 
						|
                        <h4 class="modal-title" id="helpTitle">{{ 'pleaseHold'|_ }}</h4>
 | 
						|
                    </div>
 | 
						|
                    <div class="modal-body" id="helpBody">
 | 
						|
                        <i class="fa fa-refresh fa-spin"></i>
 | 
						|
                    </div>
 | 
						|
                    <div class="modal-footer">
 | 
						|
                        <button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <!-- /.modal -->
 | 
						|
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<!-- modal to relate transactions to each other -->
 | 
						|
<div class="modal fade" id="relationModal">
 | 
						|
</div>
 | 
						|
 | 
						|
<!-- default modal -->
 | 
						|
<div class="modal fade" id="defaultModal">
 | 
						|
</div>
 | 
						|
 | 
						|
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
 | 
						|
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
 | 
						|
<script type="text/javascript" src="js/metisMenu.min.js"></script>
 | 
						|
<script type="text/javascript" src="js/sb-admin-2.js"></script>
 | 
						|
<script type="text/javascript" src="js/help.js"></script>
 | 
						|
 | 
						|
<!-- date range stuff -->
 | 
						|
<script type="text/javascript" src="js/moment.min.js"></script>
 | 
						|
<script type="text/javascript" src="js/daterangepicker.js"></script>
 | 
						|
 | 
						|
<script type="text/javascript">
 | 
						|
    var start = "{{Session.get('start').format('d-m-Y')}}";
 | 
						|
    var end = "{{Session.get('end').format('d-m-Y')}}";
 | 
						|
    var titleString = "{{Session.get('start').formatLocalized(monthAndDayFormat)}} - {{Session.get('end').formatLocalized(monthAndDayFormat)}}";
 | 
						|
    var dateRangeURL = "{{route('daterange')}}";
 | 
						|
    var token = "{{csrf_token()}}";
 | 
						|
    var firstDate = moment("{{Session.get('first').format('Y-m-d')}}");
 | 
						|
    var currentMonthName = "{{ currentMonthName }}";
 | 
						|
    var previousMonthName = "{{ previousMonthName }}";
 | 
						|
    var language = "{{ language }}";
 | 
						|
 | 
						|
    // translations:
 | 
						|
    var everything = '{{ 'everything'|_ }}';
 | 
						|
    var customRangeLabel = '{{ 'customRange'|_ }}';
 | 
						|
    var applyLabel = '{{ 'apply'|_ }}';
 | 
						|
    var cancelLabel = '{{ 'cancel'|_ }}';
 | 
						|
    var fromLabel = '{{ 'from'|_ }}';
 | 
						|
    var toLabel = '{{ 'to'|_ }}';
 | 
						|
 | 
						|
    var nextMonthName = "{{ nextMonthName }}";
 | 
						|
    var currencyCode = '{{getCurrencyCode() }}';
 | 
						|
    $('#daterange span').text(titleString);
 | 
						|
</script>
 | 
						|
 | 
						|
<script type="text/javascript" src="js/firefly.js"></script>
 | 
						|
{% block scripts %}{% endblock %}
 | 
						|
 | 
						|
<script>
 | 
						|
    (function (i, s, o, g, r, a, m) {
 | 
						|
        i['GoogleAnalyticsObject'] = r;
 | 
						|
        i[r] = i[r] || function () {
 | 
						|
            (i[r].q = i[r].q || []).push(arguments)
 | 
						|
        }, i[r].l = 1 * new Date();
 | 
						|
        a = s.createElement(o),
 | 
						|
                m = s.getElementsByTagName(o)[0];
 | 
						|
        a.async = 1;
 | 
						|
        a.src = g;
 | 
						|
        m.parentNode.insertBefore(a, m)
 | 
						|
    })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
 | 
						|
 | 
						|
    ga('create', '{{ env('ANALYTICS_ID', 'XXX-XX-X')  }}', 'auto');
 | 
						|
    ga('send', 'pageview');
 | 
						|
 | 
						|
    // send an event if relevant:
 | 
						|
    {% if Session.has('gaEventCategory') and Session.has('gaEventAction') %}
 | 
						|
    ga('send', 'event', '{{Session.get('gaEventCategory')}}', '{{Session.get('gaEventAction')}}');
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html>
 |