Maj de bootstrap en V4 finale

Création d'un module à part pour gérer les applications
 - Ajout de VautMeUp
 - Préparation de l'appli karting
Ajout d'un bloc "Projets personnels"
This commit is contained in:
2018-06-27 00:46:00 +02:00
parent 2cdbbadcc2
commit 5659eb6309
35 changed files with 14681 additions and 9663 deletions

View File

@ -0,0 +1,53 @@
<?php
namespace CV;
use Zend\ServiceManager\Factory\InvokableFactory;
return [
'controllers' => [
'factories' => [
Controller\IndexController::class => InvokableFactory::class,
],
],
'router' => [
'routes' => [
'CV' => [
'type' => 'Literal',
'options' => [
// Change this to something specific to your module
'route' => '/cv',
'defaults' => [
'controller' => Controller\IndexController::class,
'action' => 'index',
],
],
'may_terminate' => true,
'child_routes' => [
// You can place additional routes that match under the
// route defined above here.
],
],
'Vault' => [
'type' => 'Literal',
'options' => [
// Change this to something specific to your module
'route' => '/vault',
'defaults' => [
'controller' => Controller\IndexController::class,
'action' => 'vault',
],
],
'may_terminate' => true,
'child_routes' => [
// You can place additional routes that match under the
// route defined above here.
],
],
],
],
'view_manager' => [
'template_path_stack' => [
'CV' => __DIR__ . '/../view',
],
],
];