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