mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-21 22:13:11 -06:00
57 lines
2.2 KiB
Twig
57 lines
2.2 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="{{ trans('config.html_language') }}">
|
|
<head>
|
|
<base href="{{ route('index') }}/">
|
|
<meta charset="UTF-8">
|
|
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
|
|
<title>Firefly III</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
|
|
{# CSS things #}
|
|
|
|
{# libraries #}
|
|
<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"/>
|
|
|
|
{# the theme #}
|
|
<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"/>
|
|
|
|
{# Firefly III customisations #}
|
|
<link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="v1/js/lib/html5shiv.min.js?v={{ FF_VERSION }}"></script>
|
|
<script src="v1/js/lib/respond.min.js?v={{ FF_VERSION }}"></script>
|
|
<![endif]-->
|
|
|
|
{# favicons #}
|
|
{% include('partials.favicons') %}
|
|
|
|
</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>
|
|
|
|
<script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript"></script>
|
|
{% if config('firefly.analytics_id') != '' %}
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ config('firefly.analytics_id') }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', '{{ config('firefly.analytics_id') }}');
|
|
</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|