<?php
/**
* dFramework
*
* The simplest PHP framework for beginners
* Copyright (c) 2019 - 2021, Dimtrov Lab's
* This content is released under the Mozilla Public License 2 (MPL-2.0)
*
* @package dFramework
* @author Dimitri Sitchet Tomkeu <dev.dst@gmail.com>
* @copyright Copyright (c) 2019 - 2021, Dimtrov Lab's. (https://dimtrov.hebfree.org)
* @copyright Copyright (c) 2019 - 2021, Dimitri Sitchet Tomkeu. (https://www.facebook.com/dimtrovich)
* @license https://opensource.org/licenses/MPL-2.0 MPL-2.0 License
* @homepage https://dimtrov.hebfree.org/works/dframework
* @version 3.3.0
*/
$layout['default'] = [
// fichiers de style des plugins
'lib_styles' => [
],
// fichiers de script des plugins
'lib_scripts' => [
],
// fichiers de style de l'application
'styles' => [
],
// fichiers de script de l'application
'scripts' => [
],
];
/**
* DON'T TOUCH THIS LINE. IT'S USING BY CONFIG CLASS
*/
return compact('layout');
|