2015-07-25 00:04:09 -05:00
|
|
|
<!DOCTYPE html>
|
2018-01-16 23:25:32 -06:00
|
|
|
<html lang="{{ trans('config.html_language') }}">
|
2015-07-25 00:04:09 -05:00
|
|
|
<head>
|
2018-03-04 13:40:49 -06:00
|
|
|
<base href="{{ route('index') }}/">
|
2015-07-25 00:04:09 -05:00
|
|
|
<meta charset="UTF-8">
|
2017-09-30 10:56:51 -05:00
|
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
|
2015-07-25 00:04:09 -05:00
|
|
|
<title>Firefly III</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2018-07-28 23:53:08 -05:00
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2015-07-25 00:04:09 -05:00
|
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
2018-08-25 10:08:29 -05:00
|
|
|
|
|
|
|
{# CSS things #}
|
|
|
|
|
|
|
|
{# libraries #}
|
2018-11-02 13:59:29 -05:00
|
|
|
<link href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<link href="v1/lib/fa/css/font-awesome.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<link href="v1/css/daterangepicker.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
2018-08-25 10:08:29 -05:00
|
|
|
|
|
|
|
{# the theme #}
|
2018-11-02 13:59:29 -05:00
|
|
|
<link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<link href="v1/lib/adminlte/css/skins/skin-blue-light.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
2018-08-25 10:08:29 -05:00
|
|
|
|
|
|
|
{# Firefly III customisations #}
|
2018-11-02 13:59:29 -05:00
|
|
|
<link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
2015-07-25 00:04:09 -05:00
|
|
|
|
|
|
|
<!--[if lt IE 9]>
|
2018-11-02 13:59:29 -05:00
|
|
|
<script src="v1/js/lib/html5shiv.min.js?v={{ FF_VERSION }}"></script>
|
|
|
|
<script src="v1/js/lib/respond.min.js?v={{ FF_VERSION }}"></script>
|
2015-07-25 00:04:09 -05:00
|
|
|
<![endif]-->
|
|
|
|
|
2016-11-06 07:52:48 -06:00
|
|
|
{# favicons #}
|
|
|
|
{% include('partials.favicons') %}
|
2015-07-25 00:04:09 -05:00
|
|
|
|
|
|
|
</head>
|
|
|
|
<body class="login-page">
|
|
|
|
<div class="login-box">
|
|
|
|
<div class="login-logo">
|
|
|
|
<a href="{{ route('index') }}"><b>Firefly</b>III</a>
|
|
|
|
</div>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
2018-11-02 13:59:29 -05:00
|
|
|
<script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript"></script>
|
2018-12-15 00:59:02 -06:00
|
|
|
{% if config('firefly.analytics_id') != '' %}
|
2018-09-10 13:21:39 -05:00
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2018-12-15 00:59:02 -06:00
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ config('firefly.analytics_id') }}"></script>
|
2015-08-13 10:35:41 -05:00
|
|
|
<script>
|
2018-09-10 13:21:39 -05:00
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
2018-12-15 00:59:02 -06:00
|
|
|
gtag('config', '{{ config('firefly.analytics_id') }}');
|
2015-08-13 10:35:41 -05:00
|
|
|
</script>
|
|
|
|
{% endif %}
|
2015-07-25 00:04:09 -05:00
|
|
|
</body>
|
|
|
|
</html>
|