yeesoft/yee-theme

Yee CMS control panel theme based on Bootstrap 3

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 103

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 5

Open Issues: 0

Language:CSS

pkg:composer/yeesoft/yee-theme

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.