xref: /webtrees/resources/views/layouts/error.phtml (revision b8fc901f205cd6af65496b916bf63547a3065a2f)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5?>
6<!DOCTYPE html>
7<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>">
8    <head>
9        <meta charset="UTF-8">
10        <meta name="viewport" content="width=device-width, initial-scale=1">
11        <meta name="robots" content="noindex">
12
13        <title><?= I18N::translate('This website is temporarily unavailable') ?></title>
14
15        <link rel="icon" href="favicon.ico" type="image/x-icon">
16
17        <style type="text/css">
18            body {color: gray; background-color: white; font: 14px tahoma, arial, helvetica, sans-serif; padding:10px; }
19            a {color: #81A9CB; font-weight: bold; text-decoration: none;}
20            a:hover {text-decoration: underline;}
21            h1 {color: #81A9CB; font-weight:normal; text-align:center;}
22            li {line-height:2;}
23            blockquote {color:red;}
24            .content { border:1px solid gray; padding:15px; margin: 15px; border-radius:15px;}
25            .good {color: green;}
26        </style>
27    </head>
28
29    <body>
30        <h1><?= I18N::translate('This website is temporarily unavailable') ?></h1>
31
32        <?= $content ?>
33    </body>
34</html>
35