Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created July 16, 2014 08:27
Show Gist options
  • Save mkusher/8ac2eb1eb8a4e6855453 to your computer and use it in GitHub Desktop.
Save mkusher/8ac2eb1eb8a4e6855453 to your computer and use it in GitHub Desktop.
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace app\assets;
use yii\web\AssetBundle;
class LoginAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
'css/font-awesome.css',
'css/sb-admin.css'
];
public $js = [
"js/bootstrap.min.js",
"js/plugins/metisMenu/jquery.metisMenu.js",
"js/sb-admin.js"
];
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment