summaryrefslogtreecommitdiff
path: root/resources/views/layouts/error.php
blob: c2fb86a60ad2052997961b588d57d85a225f0ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php use Fisharebest\Webtrees\I18N; ?>
<!DOCTYPE html>
<html <?= I18N::htmlAttributes() ?>>
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<meta name="robots" content="noindex">

		<title><?= I18N::translate('This website is temporarily unavailable') ?></title>

		<link rel="icon" href="favicon.ico" type="image/x-icon">

		<style type="text/css">
			body {color: gray; background-color: white; font: 14px tahoma, arial, helvetica, sans-serif; padding:10px; }
			a {color: #81A9CB; font-weight: bold; text-decoration: none;}
			a:hover {text-decoration: underline;}
			h1 {color: #81A9CB; font-weight:normal; text-align:center;}
			li {line-height:2;}
			blockquote {color:red;}
			.content { border:1px solid gray; padding:15px; margin: 15px; border-radius:15px;}
			.good {color: green;}
		</style>
	</head>

	<body>
		<h1><?= I18N::translate('This website is temporarily unavailable') ?></h1>

		<?= $content ?>
	</body>
</html>