firefly-iii/resources/views/layout/install.twig

36 lines
1.4 KiB
Twig
Raw Normal View History

2018-03-07 13:21:36 -06:00
<!DOCTYPE html>
<html lang="en">
<head>
<base href="{{ route('index') }}/">
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
<title>Firefly III - Installation and update</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2018-03-10 00:17:05 -06:00
<meta name="csrf-token" content="{{ csrf_token() }}">
2018-03-07 13:21:36 -06:00
<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">
<b>Firefly</b>III<br />
<span style="font-family: monospace;font-size:16pt;">installation and upgrade</span>
</div>
{% block content %}{% endblock %}
</div>
<script src="js/app.js?v={{ FF_VERSION }}" type="text/javascript"></script>
2018-03-10 00:17:05 -06:00
{% block scripts %}{% endblock %}
2018-03-07 13:21:36 -06:00
</body>
</html>