* \n to PHP_EOL * add phpdoc for autocomplete * try to unify indentations * stop mixing quotation marks if possible
27 lines
962 B
PHP
27 lines
962 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
/** @var PageTemplate $this */
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<meta http-equiv="expires" content="-1" />
|
|
<title>Maintenance</title>
|
|
|
|
<style type="text/css">
|
|
body { text-align: center; font-family: Arial; background-color: black; color: white }
|
|
.maintenance { background: url(<?=$this->gStaticUrl; ?>/images/logos/home.png) no-repeat center top; width: 900px; margin: 40px auto; text-align: center; padding-top: 70px; }
|
|
.maintenance div { color: #00DD00; font-weight: bold; padding: 20px }
|
|
.maintenance p { background: url(<?=$this->gStaticUrl; ?>/images/maintenance/brbgnomes.jpg) no-repeat center bottom; padding-bottom: 300px }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="maintenance">
|
|
<div>The website is currently closed for maintenance.</div>
|
|
<p>This will take a few minutes...</p>
|
|
</div>
|
|
</body>
|
|
</html>
|