2020-07-10 12:20:25 +00:00
|
|
|
<!DOCTYPE html>
|
2021-09-08 15:51:33 +00:00
|
|
|
<html lang="<?= service('request')
|
|
|
|
->getLocale() ?>">
|
2020-07-10 12:20:25 +00:00
|
|
|
|
|
|
|
<head>
|
2020-08-04 11:25:22 +00:00
|
|
|
<meta charset="UTF-8"/>
|
2021-11-12 16:31:35 +00:00
|
|
|
<meta name="robots" content="noindex">
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<title><?= $this->renderSection('title') ?> | Castopod Admin</title>
|
2020-08-04 11:25:22 +00:00
|
|
|
<meta name="description" content="Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience."/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
2021-10-26 15:54:56 +00:00
|
|
|
<link rel="icon" type="image/x-icon" href="<?= service('settings')
|
|
|
|
->get('App.siteIcon')['ico'] ?>" />
|
|
|
|
<link rel="apple-touch-icon" href="<?= service('settings')->get('App.siteIcon')['180'] ?>">
|
|
|
|
<link rel="manifest" href="<?= route_to('webmanifest') ?>">
|
2021-08-09 10:28:16 +00:00
|
|
|
|
2022-01-20 11:26:18 +00:00
|
|
|
<link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' />
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= service('vite')
|
|
|
|
->asset('styles/index.css', 'css') ?>
|
|
|
|
<?= service('vite')
|
|
|
|
->asset('js/admin.ts', 'js') ?>
|
|
|
|
<?= service('vite')
|
2021-09-28 15:47:59 +00:00
|
|
|
->asset('js/admin-audio-player.ts', 'js') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
</head>
|
|
|
|
|
2021-11-05 14:36:34 +00:00
|
|
|
<body class="relative grid items-start min-h-screen bg-base grid-cols-admin grid-rows-admin">
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= $this->include('_partials/_nav_header') ?>
|
2021-10-18 16:44:07 +00:00
|
|
|
<?= $this->include('_partials/_nav_aside') ?>
|
|
|
|
<main class="relative max-w-full col-start-1 row-start-2 col-span-full md:col-start-2 md:col-span-1">
|
2021-11-05 14:36:34 +00:00
|
|
|
<header class="z-40 flex items-center px-4 border-b bg-elevated md:px-12 sticky-header-outer border-subtle">
|
2021-10-18 16:44:07 +00:00
|
|
|
<div class="flex flex-col justify-end w-full -mt-4 sticky-header-inner">
|
2021-11-05 14:36:34 +00:00
|
|
|
<?= render_breadcrumb('text-xs items-center flex') ?>
|
2021-09-23 14:59:30 +00:00
|
|
|
<div class="flex justify-between py-1">
|
2021-10-21 13:12:38 +00:00
|
|
|
<div class="flex flex-wrap items-center overflow-x-hidden">
|
|
|
|
<Heading tagName="h1" size="large" class="truncate"><?= $this->renderSection('pageTitle') ?></Heading>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= $this->renderSection('headerLeft') ?>
|
|
|
|
</div>
|
2021-11-05 14:36:34 +00:00
|
|
|
<div class="flex flex-shrink-0 gap-x-2"><?= $this->renderSection('headerRight') ?></div>
|
2020-10-02 15:38:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2021-10-18 16:44:07 +00:00
|
|
|
<div class="px-2 py-8 mx-auto md:px-12">
|
2021-09-15 15:58:21 +00:00
|
|
|
<?= view('_message_block') ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->renderSection('content') ?>
|
|
|
|
</div>
|
2020-08-04 11:25:22 +00:00
|
|
|
</main>
|
2021-09-21 15:51:04 +00:00
|
|
|
</body>
|