mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
17 lines
314 B
PHP
17 lines
314 B
PHP
<?php
|
|
/**
|
|
* Default front-end section controller
|
|
* Simply delegates initiation to the Boilerplate Module.
|
|
*/
|
|
|
|
// Project configuration and Charcoal instanciation
|
|
include 'config/config.php';
|
|
|
|
// Charcoal init
|
|
Charcoal::init();
|
|
|
|
// Project init (front-page controller)
|
|
$opts = [];
|
|
Boilerplate_Module::init($opts);
|
|
|