mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
21 lines
998 B
PHP
21 lines
998 B
PHP
<!DOCTYPE html>
|
|
<html lang="<?= App::getLocale() ?>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?= Lang::get('system::lang.page.maintenance.label') ?></title>
|
|
<link href="<?= Url::asset('/modules/system/assets/css/styles.css') ?>" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1><i class="icon-wrench warning"></i> <?= Lang::get('system::lang.page.maintenance.label') ?></h1>
|
|
<p class="lead"><?= Lang::get('system::lang.page.maintenance.help') ?></p>
|
|
<p class="lead">
|
|
<?php if ($message) : ?>
|
|
<strong><?= Lang::get('system::lang.page.maintenance.message') ?></strong> <?= $message; ?><br />
|
|
<?php endif; ?>
|
|
<?php if ($willBeAvailableAt) : ?>
|
|
<strong><?= Lang::get('system::lang.page.maintenance.available_at') ?></strong> <?= $willBeAvailableAt; ?><br />
|
|
<?php endif; ?>
|
|
</div>
|
|
</body>
|
|
</html>
|