165cf5706SGreg Roach<?php 265cf5706SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 565cf5706SGreg Roachuse Fisharebest\Webtrees\I18N; 665cf5706SGreg Roach 77c2c99faSGreg Roach/** 87c2c99faSGreg Roach * @var string $content 97c2c99faSGreg Roach */ 107c2c99faSGreg Roach 1165cf5706SGreg Roach?> 12dd6b2bfcSGreg Roach<!DOCTYPE html> 1365cf5706SGreg Roach<html dir="<?= I18N::locale()->direction() ?>" lang="<?= I18N::locale()->languageTag() ?>"> 14dd6b2bfcSGreg Roach <head> 15dd6b2bfcSGreg Roach <meta charset="UTF-8"> 16dd6b2bfcSGreg Roach <meta name="viewport" content="width=device-width, initial-scale=1"> 17dd6b2bfcSGreg Roach <meta name="robots" content="noindex"> 18dd6b2bfcSGreg Roach 19dd6b2bfcSGreg Roach <title><?= I18N::translate('This website is temporarily unavailable') ?></title> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach <link rel="icon" href="favicon.ico" type="image/x-icon"> 22dd6b2bfcSGreg Roach 23b1ee2291SGreg Roach <style> 24dd6b2bfcSGreg Roach body {color: gray; background-color: white; font: 14px tahoma, arial, helvetica, sans-serif; padding:10px; } 25dd6b2bfcSGreg Roach a {color: #81A9CB; font-weight: bold; text-decoration: none;} 26dd6b2bfcSGreg Roach a:hover {text-decoration: underline;} 27dd6b2bfcSGreg Roach h1 {color: #81A9CB; font-weight:normal; text-align:center;} 28dd6b2bfcSGreg Roach li {line-height:2;} 29dd6b2bfcSGreg Roach blockquote {color:red;} 30dd6b2bfcSGreg Roach .content { border:1px solid gray; padding:15px; margin: 15px; border-radius:15px;} 31dd6b2bfcSGreg Roach .good {color: green;} 32dd6b2bfcSGreg Roach </style> 33dd6b2bfcSGreg Roach </head> 34dd6b2bfcSGreg Roach 35dd6b2bfcSGreg Roach <body> 36dd6b2bfcSGreg Roach <h1><?= I18N::translate('This website is temporarily unavailable') ?></h1> 37dd6b2bfcSGreg Roach 38dd6b2bfcSGreg Roach <?= $content ?> 39dd6b2bfcSGreg Roach </body> 40dd6b2bfcSGreg Roach</html> 41