castopod/modules/Admin/Views/dashboard.php
Yassine Doghri 5083cd2fda refactor(modules): extract castopod parts into a modules/ folder for a scalable HMVC structure
- create Admin, Analytics, Auth, Fediverse and Install modules in the root modules/ folder
- rename
ActivityPub to Fediverse
2021-12-29 11:54:22 +00:00

15 lines
362 B
PHP

<?= helper('components') ?>
<?= $this->extend('Modules\Admin\Views\_layout') ?>
<?= $this->section('title') ?>
<?= lang('Admin.dashboard') ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= lang('Admin.dashboard') ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<?= lang('Admin.welcome_message') ?>
<?= $this->endsection() ?>