2015-07-25 07:04:09 +02:00
|
|
|
<!DOCTYPE html>
|
2018-01-17 06:25:32 +01:00
|
|
|
<html lang="{{ trans('config.html_language') }}">
|
2015-07-25 07:04:09 +02:00
|
|
|
<head>
|
2018-03-04 20:40:49 +01:00
|
|
|
<base href="{{ route('index') }}/">
|
2015-07-25 07:04:09 +02:00
|
|
|
<meta charset="UTF-8">
|
2017-09-30 17:56:51 +02:00
|
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
|
2015-07-25 07:04:09 +02:00
|
|
|
<title>Firefly III</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2018-07-29 06:53:08 +02:00
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2015-07-25 07:04:09 +02:00
|
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
2019-02-24 15:12:58 -05:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
2018-08-25 17:08:29 +02:00
|
|
|
|
|
|
|
{# CSS things #}
|
|
|
|
|
|
|
|
{# libraries #}
|
2018-11-02 19:59:29 +01: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 17:08:29 +02:00
|
|
|
|
|
|
|
{# the theme #}
|
2018-11-02 19:59:29 +01: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 17:08:29 +02:00
|
|
|
|
|
|
|
{# Firefly III customisations #}
|
2018-11-02 19:59:29 +01:00
|
|
|
<link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
2015-07-25 07:04:09 +02:00
|
|
|
|
|
|
|
<!--[if lt IE 9]>
|
2018-11-02 19:59:29 +01: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 07:04:09 +02:00
|
|
|
<![endif]-->
|
|
|
|
|
2016-11-06 14:52:48 +01:00
|
|
|
{# favicons #}
|
|
|
|
{% include('partials.favicons') %}
|
2015-07-25 07:04:09 +02: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 19:59:29 +01:00
|
|
|
<script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript"></script>
|
2018-12-15 07:59:02 +01:00
|
|
|
{% if config('firefly.analytics_id') != '' %}
|
2018-09-10 20:21:39 +02:00
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2018-12-15 07:59:02 +01:00
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ config('firefly.analytics_id') }}"></script>
|
2015-08-13 17:35:41 +02:00
|
|
|
<script>
|
2018-09-10 20:21:39 +02:00
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
2018-12-15 07:59:02 +01:00
|
|
|
gtag('config', '{{ config('firefly.analytics_id') }}');
|
2015-08-13 17:35:41 +02:00
|
|
|
</script>
|
|
|
|
{% endif %}
|
2015-07-25 07:04:09 +02:00
|
|
|
</body>
|
|
|
|
</html>
|