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