xref: /webtrees/resources/views/layouts/offline.phtml (revision 65cf57062fc712114f930335533210fd95170cea)
1*65cf5706SGreg Roach<?php
2*65cf5706SGreg Roach
3*65cf5706SGreg Roachuse Fisharebest\Webtrees\I18N;
4*65cf5706SGreg Roachuse Fisharebest\Webtrees\Webtrees;
5*65cf5706SGreg Roach
6*65cf5706SGreg Roach?>
78d0ebef0SGreg Roach
8dd6b2bfcSGreg Roach<!DOCTYPE html>
9*65cf5706SGreg Roach<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
10dd6b2bfcSGreg Roach    <head>
11dd6b2bfcSGreg Roach        <meta charset="UTF-8">
12dd6b2bfcSGreg Roach        <meta name="viewport" content="width=device-width, initial-scale=1">
13dd6b2bfcSGreg Roach
148d0ebef0SGreg Roach        <title><?= e(Webtrees::NAME) ?></title>
15dd6b2bfcSGreg Roach
16dd6b2bfcSGreg Roach        <link rel="icon" href="favicon.ico" type="image/x-icon">
17dd6b2bfcSGreg Roach        <style type="text/css">
18dd6b2bfcSGreg Roach            body {
19dd6b2bfcSGreg Roach                color: gray;
20dd6b2bfcSGreg Roach                background-color: white;
21dd6b2bfcSGreg Roach                font: 14px tahoma, arial, helvetica, sans-serif;
22dd6b2bfcSGreg Roach                padding: 10px;
23dd6b2bfcSGreg Roach            }
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach            a {
26dd6b2bfcSGreg Roach                color: #81A9CB;
27dd6b2bfcSGreg Roach                font-weight: bold;
28dd6b2bfcSGreg Roach                text-decoration: none;
29dd6b2bfcSGreg Roach            }
30dd6b2bfcSGreg Roach
31dd6b2bfcSGreg Roach            a:hover {
32dd6b2bfcSGreg Roach                text-decoration: underline;
33dd6b2bfcSGreg Roach            }
34dd6b2bfcSGreg Roach
35dd6b2bfcSGreg Roach            h1 {
36dd6b2bfcSGreg Roach                color: #81A9CB;
37dd6b2bfcSGreg Roach                font-weight: normal;
38dd6b2bfcSGreg Roach                text-align: center;
39dd6b2bfcSGreg Roach            }
40dd6b2bfcSGreg Roach
41dd6b2bfcSGreg Roach            li {
42dd6b2bfcSGreg Roach                line-height: 2;
43dd6b2bfcSGreg Roach            }
44dd6b2bfcSGreg Roach
45dd6b2bfcSGreg Roach            blockquote {
46dd6b2bfcSGreg Roach                color: red;
47dd6b2bfcSGreg Roach            }
48dd6b2bfcSGreg Roach
49dd6b2bfcSGreg Roach            .content { /*margin:auto; width:800px;*/
50dd6b2bfcSGreg Roach                border: 1px solid gray;
51dd6b2bfcSGreg Roach                padding: 15px;
52dd6b2bfcSGreg Roach                border-radius: 15px;
53dd6b2bfcSGreg Roach            }
54dd6b2bfcSGreg Roach
55dd6b2bfcSGreg Roach            .good {
56dd6b2bfcSGreg Roach                color: green;
57dd6b2bfcSGreg Roach            }
58dd6b2bfcSGreg Roach        </style>
59dd6b2bfcSGreg Roach    </head>
60dd6b2bfcSGreg Roach
61dd6b2bfcSGreg Roach    <body class="container">
62dd6b2bfcSGreg Roach        <h1><?= I18N::translate('This website is temporarily unavailable') ?></h1>
63dd6b2bfcSGreg Roach        <div class="content">
64dd6b2bfcSGreg Roach            <p>
65dd6b2bfcSGreg Roach                <?= str_replace('index.php', e($url), I18N::translate('This website is down for maintenance. You should <a href="index.php">try again</a> in a few minutes.')) ?>
66dd6b2bfcSGreg Roach            </p>
67dd6b2bfcSGreg Roach            <p>
68dd6b2bfcSGreg Roach                <?= $message ?>
69dd6b2bfcSGreg Roach            </p>
70dd6b2bfcSGreg Roach        </div>
71dd6b2bfcSGreg Roach    </body>
72dd6b2bfcSGreg Roach</html>
73