Blame view

frontend/assets/AppAsset.php 1013 Bytes
eb56e5f2   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <?php
      
      namespace frontend\assets;
      
      use yii\web\AssetBundle;
      
      /**
       * Main frontend application asset bundle.
       */
      class AppAsset extends AssetBundle
      {
          public $basePath = '@webroot';
          public $baseUrl = '@web';
          public $css = [
              'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css',
              'css/theme-style.css',
              'https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&amp;subset=latin,cyrillic-ext,cyrillic,latin-ext',
          ];
          public $js = [
              'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js',
              'js/script.js',
              'js/device.min.js',
              'js/firstSlider.js',
              'js/pushy.js',
              'js/owl.carousel.min.js',
eb56e5f2   Administrator   first commit
26
27
28
29
30
31
32
              'http://code.jquery.com/ui/1.11.4/jquery-ui.js'
          ];
          public $depends = [
              'yii\web\YiiAsset',
              //        'yii\bootstrap\BootstrapAsset',
          ];
      }