gintonicweb/twbs-theme

Twitter Bootstrap 默认主题,用于 GintonicCMS

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

基于 twbs/bootstrap 的 GintonicCMS 主题

警告

此包不再维护

安装

使用 composer 安装插件。

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

在 config/bootstrap.php 中加载它

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

将以下辅助工具添加到您的 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']);
}