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