|
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 0.10.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- * @var \App\View\AppView $this
- */
-
- $siteName = 'Territory';
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <?= $this->Html->charset() ?>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><?= $siteName ?><?= $this->fetch('title') ? ' · ' . $this->fetch('title') : '' ?></title>
- <?= $this->Html->meta('icon') ?>
- <?php if ($this->request->getAttribute('csrfToken')): ?>
- <meta name="csrf-token" content="<?= h($this->request->getAttribute('csrfToken')) ?>">
- <?php endif; ?>
-
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
-
- <?= $this->Html->css(['normalize.min', 'milligram.min', 'fonts', 'cake', 'app']) ?>
- <?= $this->Html->script('https://code.jquery.com/jquery-3.7.1.min.js') ?>
-
- <?= $this->fetch('meta') ?>
- <?= $this->fetch('css') ?>
- <?= $this->fetch('script') ?>
- </head>
- <body>
- <?= $this->element('header') ?>
- <main class="main">
- <div class="container">
- <?= $this->Flash->render() ?>
- <?= $this->fetch('content') ?>
- </div>
- </main>
- <?= $this->element('footer') ?>
- <?= $this->Html->script('app') ?>
- </body>
- </html>
|