mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			736 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			736 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ trans('config.html_language') }}">
 | |
| <head>
 | |
|     <base href="{{ route('index') }}/" />
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <title>Firefly III
 | |
|         {% if title != "Firefly" and title != "" %}
 | |
|             // {{ title }}
 | |
|         {% endif %}
 | |
| 
 | |
|         {% if subTitle %}
 | |
|             // {{ subTitle }}
 | |
|         {% endif %}</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <link rel="stylesheet" href="v2/plugins/local-fonts/gf-source.css">
 | |
|     <link rel="stylesheet" href="v2/css/app.css">
 | |
| </head>
 | |
| <body class="hold-transition login-page">
 | |
| {% block content %}{% endblock %}
 | |
| {% block scripts %}{% endblock %}
 | |
| </body>
 | |
| </html>
 |