emiliomg / frontpage-bundle
Simple frontpage if your project needs no frontpage but a 404-page is just plain ugly.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3
- symfony/framework-bundle: ~2.3|~3.0
This package is not auto-updated.
Last update: 2020-10-06 23:09:36 UTC
README
This Symfony-Bundle provides an easy to use generic Frontpage.
Installation
- Add the bundle in your
composer.json
:
"require": {
"emiliomg/frontpage-bundle": "~1.0"
}
- Register the bundle in
app/AppKernel.php
:
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new EmilioMg\FrontpageBundle\EmilioMgFrontpageBundle(),
);
}
- Import the routing definition in
app/config/routing.yml
:
# app/config/routing.yml
emiliomg_frontpage:
resource: "@EmilioMgFrontpageBundle/Resources/config/routing.yml"
prefix: /
- Install the assets
$ bin/console assets:install
- (Optional) Enable the bundles configuration in
app/config/config.yml
:
# app/config/config.yml
emilio_mg_frontpage: ~
Configuration
The default text is rather generic. If you want to use your own text (which is recommended), override the bundle's config in app/config/config.yml
:
emilio_mg_frontpage:
text: "The text I want to display. Text in #hashtags# will be emphasised."
title: "The Title of the page. If not set, the title will equal the text."