gintonicweb/twbs-theme

Twitter Bootstrap default theme for GintonicCMS

Installs: 990

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 5

Open Issues: 0

Type:cakephp-plugin

dev-master 2017-04-02 18:05 UTC

This package is not auto-updated.

Last update: 2021-10-29 01:23:30 UTC


README

Build Status

bootstrap

GintonicCMS theme based on twbs/bootstrap

Warning

This package is not maintained

Installation

Install the plugin using composer.

"gintonicweb/twbs-theme": "dev-master"

Load it in config/bootstrap.php

Plugin::load('TwbsTheme', ['bootstrap' => true]);

Add the following helpers to your src\View\AppView

public function initialize()
{
    $this->loadHelper('Html', ['className' => 'BootstrapUI.Html']);
    $this->loadHelper('Form', ['className' => 'BootstrapUI.Form']);
    $this->loadHelper('Flash', ['className' => 'BootstrapUI.Flash']);
    $this->loadHelper('Paginator', ['className' => 'BootstrapUI.Paginator']);
}