Premier commit
This commit is contained in:
23
modules/site/layouts/minimal.php
Normal file
23
modules/site/layouts/minimal.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/* @var $this \Piko\View */
|
||||
/* @var $content string */
|
||||
|
||||
if (!$this->title) $this->title = 'Openai';
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?= $this->params['language'] ?>">
|
||||
<head>
|
||||
<meta charset="<?= $this->charset ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title><?= $this->escape($this->title) ?></title>
|
||||
<?= $this->head() ?>
|
||||
<?= $this->vite('main.css') ?>
|
||||
</head>
|
||||
<body class="d-flex align-items-center py-4">
|
||||
|
||||
<?= $content ?>
|
||||
|
||||
<?= $this->endBody() ?>
|
||||
<?= $this->vite('main.js') ?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user