yeesoft/yee-theme

Yee CMS control panel theme based on Bootstrap 3

0.1.0 2017-03-25 21:06 UTC

This package is auto-updated.

Last update: 2022-03-29 00:18:48 UTC


README

Yee CMS Theme

Installation

  • Either run
composer require --prefer-dist yeesoft/yee-theme "0.1.0"

or add

"yeesoft/yee-theme": "0.1.0"

to the require section of your composer.json file.

Configuration

  • In your config file
'components' => [
    'assetManager' => [
        'bundles' => [
            'yii\bootstrap\BootstrapAsset' => [
                'sourcePath' => '@yeesoft/yee-theme/dist',
                 'css' => ['css/theme.min.css']
            ],
            'yii\bootstrap\BootstrapPluginAsset' => [
                'sourcePath' => '@yeesoft/yee-theme/dist',
                 'js' => ['js/bootstrap.min.js',]
            ],
        ],
    ],
]

Creation of own theme

  • Create a copy of yeesoft/yee-theme.

  • Run

composer install
npm install

to install all dependencies.

  • Update js, less or other files. Run
grunt run

to build and minify all source files.