Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalamu/default-bootstrap-template-bundle
Default Bootstrap template for Kalamu CMS
https://github.com/kalamu/default-bootstrap-template-bundle
Last synced: 6 days ago
JSON representation
Default Bootstrap template for Kalamu CMS
- Host: GitHub
- URL: https://github.com/kalamu/default-bootstrap-template-bundle
- Owner: kalamu
- License: mit
- Created: 2019-08-13T09:00:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-13T14:06:41.000Z (over 5 years ago)
- Last Synced: 2024-05-05T06:01:47.713Z (7 months ago)
- Language: CSS
- Size: 200 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Default Bootstrap Template
This bundle is an example [Bootstrap](https://getbootstrap.com/) template for Kalamu. The
original template has been generously published under the MIT licence on
[HackerThemes](https://hackerthemes.com/bootstrap-themes/growth/) by _Alexander Rechsteiner_.Example screenshot
![Screenshot](screenshot.png)# Installation
First you must install [Kalamu CMS](https://github.com/kalamu/kalamu#installation) then you can
install this theme with composer :``` bash
composer require kalamu/default-bootstrap-template-bundle
```Register the bundle in `app/AppKernel.php` :
``` php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
//...
new Kalamu\DefaultBootstrapTemplateBundle\KalamuDefaultBootstrapTemplateBundle(),
];
}
}
```Register the routing in `app/config/routing.yml` :
``` yml
# Add at the top of the file
kalamu_default_bootstrap_template_bundle:
resource: "@KalamuDefaultBootstrapTemplateBundle/Resources/config/routing.yml"
prefix: /_fragment
```Then you website should use the new template. If not check that the template configuration in
the `kalamu_cms_core` section of the main configuration (`app/config/config.yml`) has not
been overrided.