mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
66 lines
3.1 KiB
Twig
66 lines
3.1 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'>
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
{# CSS things #}
|
|
|
|
{# libraries #}
|
|
<link href="v1/lib/bs/css/bootstrap.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
<link href="v1/lib/fa/css/font-awesome.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
<link href="v1/css/daterangepicker.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
|
|
{# the theme #}
|
|
<link href="v1/lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
<link href="v1/lib/adminlte/css/skins/skin-blue-light.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
|
|
{# Firefly III customisations #}
|
|
<link href="v1/css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css" nonce="{{ JS_NONCE }}">
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="v1/js/lib/html5shiv.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
<script src="v1/js/lib/respond.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
|
<![endif]-->
|
|
|
|
{# favicons #}
|
|
{% include('partials.favicons') %}
|
|
|
|
</head>
|
|
<body class="login-page">
|
|
<div class="login-box">
|
|
<div class="login-logo">
|
|
<a href="{{ route('index') }}"><strong>Firefly</strong>III</a>
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<script src="v1/js/app.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script>
|
|
|
|
{% if config('firefly.tracker_site_id') != '' and config('firefly.tracker_url') != '' %}
|
|
<!-- This tracker tag is only here because this instance of Firefly III was purposefully configured to include it -->
|
|
<!-- Your own installation will NOT include it, unless you explicitely configure it to have it. -->
|
|
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
|
var _paq = window._paq || [];
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//{{ config('firefly.tracker_url') }}/";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', '{{ config('firefly.tracker_site_id') }}']);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<noscript><p><img src="//{{ config('firefly.tracker_url') }}/matomo.php?idsite={{ config('firefly.tracker_site_id') }}&rec=1" style="border:0;" alt="" /></p></noscript>
|
|
{% endif %}
|
|
|
|
</body>
|
|
</html>
|