2020-08-12 20:03:45 +00:00
|
|
|
<!DOCTYPE html>
|
2022-10-15 11:22:08 +00:00
|
|
|
<html lang="<?= service('request')
|
|
|
|
->getLocale() ?>">
|
2020-08-12 20:03:45 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8"/>
|
2021-11-12 16:31:35 +00:00
|
|
|
<meta name="robots" content="noindex">
|
|
|
|
|
2022-10-18 16:53:51 +00:00
|
|
|
<title><?= lang('Install.title') ?></title>
|
|
|
|
|
2020-08-12 20:03:45 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2021-12-02 16:45:41 +00:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
|
|
<link rel="apple-touch-icon" href="/icon-180.png">
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= service('vite')
|
|
|
|
->asset('styles/index.css', 'css') ?>
|
|
|
|
<?= service('vite')
|
|
|
|
->asset('js/install.ts', 'js') ?>
|
2020-08-12 20:03:45 +00:00
|
|
|
</head>
|
|
|
|
|
2021-11-05 14:36:34 +00:00
|
|
|
<body class="flex flex-col min-h-screen mx-auto bg-base">
|
|
|
|
<header class="border-b border-subtle">
|
2020-08-12 20:03:45 +00:00
|
|
|
<div class="container flex items-center justify-between px-2 py-4 mx-auto">
|
2021-09-20 15:45:38 +00:00
|
|
|
<?= lang('Install.title') ?>
|
2020-08-12 20:03:45 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
2020-10-08 16:38:30 +00:00
|
|
|
<main class="container flex flex-col items-center justify-center flex-1 px-4 py-10 mx-auto">
|
2022-02-01 16:08:55 +00:00
|
|
|
<?= view('_message_block') ?>
|
2020-08-12 20:03:45 +00:00
|
|
|
<?= $this->renderSection('content') ?>
|
|
|
|
</main>
|
2021-11-05 14:36:34 +00:00
|
|
|
<footer class="container px-2 py-4 mx-auto text-sm text-right border-t border-subtle">
|
2020-10-02 15:38:16 +00:00
|
|
|
<small><?= lang('Common.powered_by', [
|
2024-04-26 17:57:25 +00:00
|
|
|
'castopod' => '<a class="inline-flex font-semibold hover:underline focus:ring-accent" href="https://castopod.org" target="_blank" rel="noreferrer noopener">Castopod' . icon('social:castopod', [
|
|
|
|
'class' => 'ml-1 text-lg',
|
|
|
|
]) . '</a>',
|
2022-04-21 12:53:47 +00:00
|
|
|
], null, false) ?></small>
|
2020-08-12 20:03:45 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|