19 lines
274 B
PHP
19 lines
274 B
PHP
<?php
|
|
|
|
$title = "Inventaire";
|
|
|
|
$this->setVar('title', $title);
|
|
|
|
?>
|
|
|
|
<?= $this->extend('layouts/raven') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="container mx-auto p-6">
|
|
|
|
<?= $this->renderSection('page_content') ?>
|
|
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|