mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			62 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
 | |
| 
 | |
|         {% if title != "Firefly" and title != "" %}
 | |
|             // {{ title }}
 | |
|         {% endif %}
 | |
| 
 | |
|         {% if subTitle %}
 | |
|             // {{ subTitle }}
 | |
|         {% endif %}
 | |
|     </title>
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
 | |
|     <link href="css/app.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
 | |
|     <link href="lib/adminlte/css/AdminLTE.min.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
 | |
|     <link href="css/firefly.css?v={{ FF_VERSION }}" rel="stylesheet" type="text/css"/>
 | |
| 
 | |
|     <!--[if lt IE 9]>
 | |
|     <script src="js/lib/html5shiv.min.js?v={{ FF_VERSION }}"></script>
 | |
|     <script src="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="js/app.js?v={{ FF_VERSION }}" type="text/javascript"></script>
 | |
| <script type="text/javascript" src="js/ff/guest.js?v={{ FF_VERSION }}"></script>
 | |
| 
 | |
| {% if env('ANALYTICS_ID','') != '' %}
 | |
|     <script>
 | |
|         // send pageview
 | |
|         (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') }}', {'siteSpeedSampleRate': 100});
 | |
|         ga('send', 'pageview');
 | |
|     </script>
 | |
| {% endif %}
 | |
| </body>
 | |
| </html>
 |