Blame view

backend/views/layouts/main.php 17.8 KB
1755c393   Yarik   Basic template in...
1
  <?php
b66c9c5a   Alexey Boroda   -Admin template s...
2
3
      
      /**
567888e8   Yarik   Widgets
4
       * @var string        $content
b66c9c5a   Alexey Boroda   -Admin template s...
5
6
7
       * @var \yii\web\View $this
       */
      
567888e8   Yarik   Widgets
8
      use artweb\artbox\core\models\User;
b66c9c5a   Alexey Boroda   -Admin template s...
9
10
11
      use yii\helpers\Html;
      
      $bundle = yiister\gentelella\assets\Asset::register($this);
567888e8   Yarik   Widgets
12
13
14
15
      /**
       * @var User $user
       */
      $user = \Yii::$app->user->identity;
1755c393   Yarik   Basic template in...
16
  ?>
b66c9c5a   Alexey Boroda   -Admin template s...
17
  <?php $this->beginPage(); ?>
1755c393   Yarik   Basic template in...
18
19
  <!DOCTYPE html>
  <html lang="<?= Yii::$app->language ?>">
567888e8   Yarik   Widgets
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
      <head>
          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
          <meta charset="<?= Yii::$app->charset ?>"/>
          <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
          <meta name="viewport" content="width=device-width, initial-scale=1"/>
          <?= Html::csrfMetaTags() ?>
          <title><?= Html::encode($this->title) ?></title>
          <?php $this->head() ?>
          <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
          <!--[if lt IE 9]>
          <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
          <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
          <![endif]-->
      </head>
      <body class="nav-md">
          <?php $this->beginBody(); ?>
          <div class="container body">
              
              <div class="main_container">
                  
                  <div class="col-md-3 left_col">
                      <div class="left_col scroll-view">
                          
                          <div class="navbar nav_title" style="border: 0;">
                              <a href="/" class="site_title"><i class="fa fa-rocket"></i><span>Artbox!</span></a>
                          </div>
                          <div class="clearfix"></div>
                          
                          <!-- menu prile quick info -->
                          <div class="profile">
                              <div class="profile_pic">
                                  <img src="http://placehold.it/128x128" alt="..." class="img-circle profile_img">
                              </div>
                              <div class="profile_info">
                                  <span>Welcome,</span>
                                  <h2></h2>
                              </div>
                          </div>
                          <!-- /menu prile quick info -->
                          
                          <br/>
                          
                          <!-- sidebar menu -->
                          <div id="sidebar-menu" class="main_menu_side hidden-print main_menu">
                              
                              <div class="menu_section">
                                  <h3>General</h3>
                                  <?= \yiister\gentelella\widgets\Menu::widget(
                                      [
                                          "items" => [
                                              [
                                                  "label" => "Home",
                                                  "url"   => "/",
                                                  "icon"  => "home",
                                              ],
                                              [
                                                  "label" => "Layout",
                                                  "url"   => [ "site/layout" ],
                                                  "icon"  => "files-o",
                                              ],
                                              [
                                                  "label" => "Error page",
                                                  "url"   => [ "site/error-page" ],
                                                  "icon"  => "close",
                                              ],
                                              [
                                                  "label" => "Widgets",
                                                  "icon"  => "th",
                                                  "url"   => "#",
                                                  "items" => [
                                                      [
                                                          "label" => "Menu",
                                                          "url"   => [ "site/menu" ],
                                                      ],
                                                      [
                                                          "label" => "Panel",
                                                          "url"   => [ "site/panel" ],
                                                      ],
                                                  ],
                                              ],
                                              [
                                                  "label" => "Badges",
                                                  "url"   => "#",
                                                  "icon"  => "table",
                                                  "items" => [
                                                      [
                                                          "label" => "Default",
                                                          "url"   => "#",
                                                          "badge" => "123",
                                                      ],
                                                      [
                                                          "label"        => "Success",
                                                          "url"          => "#",
                                                          "badge"        => "new",
                                                          "badgeOptions" => [ "class" => "label-success" ],
                                                      ],
                                                      [
                                                          "label"        => "Danger",
                                                          "url"          => "#",
                                                          "badge"        => "!",
                                                          "badgeOptions" => [ "class" => "label-danger" ],
                                                      ],
                                                  ],
                                              ],
                                              [
                                                  "label" => "Multilevel",
                                                  "url"   => "#",
                                                  "icon"  => "table",
                                                  "items" => [
                                                      [
                                                          "label" => "Second level 1",
                                                          "url"   => "#",
                                                      ],
                                                      [
                                                          "label" => "Second level 2",
                                                          "url"   => "#",
                                                          "items" => [
                                                              [
                                                                  "label" => "Third level 1",
                                                                  "url"   => "#",
                                                              ],
                                                              [
                                                                  "label" => "Third level 2",
                                                                  "url"   => "#",
                                                              ],
                                                          ],
                                                      ],
                                                  ],
                                              ],
                                          ],
                                      ]
                                  ) ?>
                              </div>
                          
                          </div>
                          <!-- /sidebar menu -->
                          
                          <!-- /menu footer buttons -->
                          <div class="sidebar-footer hidden-small">
                              <a data-toggle="tooltip" data-placement="top" title="Settings">
                                  <span class="glyphicon glyphicon-cog" aria-hidden="true"></span>
                              </a>
                              <a data-toggle="tooltip" data-placement="top" title="FullScreen">
                                  <span class="glyphicon glyphicon-fullscreen" aria-hidden="true"></span>
                              </a>
                              <a data-toggle="tooltip" data-placement="top" title="Lock">
                                  <span class="glyphicon glyphicon-eye-close" aria-hidden="true"></span>
                              </a>
                              <a data-toggle="tooltip" data-placement="top" title="Logout">
                                  <span class="glyphicon glyphicon-off" aria-hidden="true"></span>
                              </a>
                          </div>
                          <!-- /menu footer buttons -->
                      </div>
                  </div>
                  
                  <!-- top navigation -->
                  <div class="top_nav">
                      
                      <div class="nav_menu">
                          <nav class="" role="navigation">
                              <div class="nav toggle">
                                  <a id="menu_toggle"><i class="fa fa-bars"></i></a>
                              </div>
                              
                              <ul class="nav navbar-nav navbar-right">
                                  <li class="">
                                      <a href="javascript:;" class="user-profile dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
                                          <img src="http://placehold.it/128x128" alt="">John Doe
                                          <span class=" fa fa-angle-down"></span>
                                      </a>
                                      <ul class="dropdown-menu dropdown-usermenu pull-right">
                                          <li><a href="javascript:;"> Profile</a>
                                          </li>
                                          <li>
                                              <a href="javascript:;">
                                                  <span class="badge bg-red pull-right">50%</span>
                                                  <span>Settings</span>
                                              </a>
                                          </li>
                                          <li>
                                              <a href="javascript:;">Help</a>
                                          </li>
                                          <li><a href="login.html"><i class="fa fa-sign-out pull-right"></i> Log Out</a>
                                          </li>
                                      </ul>
                                  </li>
                                  
                                  <li role="presentation" class="dropdown">
                                      <a href="javascript:;" class="dropdown-toggle info-number" data-toggle="dropdown" aria-expanded="false">
                                          <i class="fa fa-envelope-o"></i>
                                          <span class="badge bg-green">6</span>
                                      </a>
                                      <ul id="menu1" class="dropdown-menu list-unstyled msg_list" role="menu">
                                          <li>
                                              <a>
b66c9c5a   Alexey Boroda   -Admin template s...
216
                        <span class="image">
567888e8   Yarik   Widgets
217
                                          <img src="http://placehold.it/128x128" alt="Profile Image"/>
b66c9c5a   Alexey Boroda   -Admin template s...
218
                                      </span>
567888e8   Yarik   Widgets
219
                                                  <span>
b66c9c5a   Alexey Boroda   -Admin template s...
220
221
222
                                          <span>John Smith</span>
                        <span class="time">3 mins ago</span>
                        </span>
567888e8   Yarik   Widgets
223
                                                  <span class="message">
b66c9c5a   Alexey Boroda   -Admin template s...
224
225
                                          Film festivals used to be do-or-die moments for movie makers. They were where...
                                      </span>
567888e8   Yarik   Widgets
226
227
228
229
                                              </a>
                                          </li>
                                          <li>
                                              <a>
b66c9c5a   Alexey Boroda   -Admin template s...
230
                        <span class="image">
567888e8   Yarik   Widgets
231
                                          <img src="http://placehold.it/128x128" alt="Profile Image"/>
b66c9c5a   Alexey Boroda   -Admin template s...
232
                                      </span>
567888e8   Yarik   Widgets
233
                                                  <span>
b66c9c5a   Alexey Boroda   -Admin template s...
234
235
236
                                          <span>John Smith</span>
                        <span class="time">3 mins ago</span>
                        </span>
567888e8   Yarik   Widgets
237
                                                  <span class="message">
b66c9c5a   Alexey Boroda   -Admin template s...
238
239
                                          Film festivals used to be do-or-die moments for movie makers. They were where...
                                      </span>
567888e8   Yarik   Widgets
240
241
242
243
                                              </a>
                                          </li>
                                          <li>
                                              <a>
b66c9c5a   Alexey Boroda   -Admin template s...
244
                        <span class="image">
567888e8   Yarik   Widgets
245
                                          <img src="http://placehold.it/128x128" alt="Profile Image"/>
b66c9c5a   Alexey Boroda   -Admin template s...
246
                                      </span>
567888e8   Yarik   Widgets
247
                                                  <span>
b66c9c5a   Alexey Boroda   -Admin template s...
248
249
250
                                          <span>John Smith</span>
                        <span class="time">3 mins ago</span>
                        </span>
567888e8   Yarik   Widgets
251
                                                  <span class="message">
b66c9c5a   Alexey Boroda   -Admin template s...
252
253
                                          Film festivals used to be do-or-die moments for movie makers. They were where...
                                      </span>
567888e8   Yarik   Widgets
254
255
256
257
                                              </a>
                                          </li>
                                          <li>
                                              <a>
b66c9c5a   Alexey Boroda   -Admin template s...
258
                        <span class="image">
567888e8   Yarik   Widgets
259
                                          <img src="http://placehold.it/128x128" alt="Profile Image"/>
b66c9c5a   Alexey Boroda   -Admin template s...
260
                                      </span>
567888e8   Yarik   Widgets
261
                                                  <span>
b66c9c5a   Alexey Boroda   -Admin template s...
262
263
264
                                          <span>John Smith</span>
                        <span class="time">3 mins ago</span>
                        </span>
567888e8   Yarik   Widgets
265
                                                  <span class="message">
b66c9c5a   Alexey Boroda   -Admin template s...
266
267
                                          Film festivals used to be do-or-die moments for movie makers. They were where...
                                      </span>
567888e8   Yarik   Widgets
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
                                              </a>
                                          </li>
                                          <li>
                                              <div class="text-center">
                                                  <a href="/">
                                                      <strong>See All Alerts</strong>
                                                      <i class="fa fa-angle-right"></i>
                                                  </a>
                                              </div>
                                          </li>
                                      </ul>
                                  </li>
                              
                              </ul>
                          </nav>
                      </div>
                  
                  </div>
                  <!-- /top navigation -->
                  
                  <!-- page content -->
                  <div class="right_col" role="main">
                      <?php if (isset( $this->params[ 'h1' ] )): ?>
                          <div class="page-title">
                              <div class="title_left">
                                  <h1><?= $this->params[ 'h1' ] ?></h1>
                              </div>
                              <div class="title_right">
                                  <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search">
                                      <div class="input-group">
                                          <input type="text" class="form-control" placeholder="Search for...">
                                          <span class="input-group-btn">
b66c9c5a   Alexey Boroda   -Admin template s...
300
301
                                  <button class="btn btn-default" type="button">Go!</button>
                              </span>
567888e8   Yarik   Widgets
302
303
304
305
306
307
308
309
                                      </div>
                                  </div>
                              </div>
                          </div>
                      <?php endif; ?>
                      <div class="clearfix"></div>
                      
                      <?= $content ?>
b66c9c5a   Alexey Boroda   -Admin template s...
310
                  </div>
567888e8   Yarik   Widgets
311
312
313
314
315
316
317
318
319
320
321
322
                  <!-- /page content -->
                  <!-- footer content -->
                  <footer>
                      <div class="pull-right">
                          Gentelella - Bootstrap Admin Template by
                          <a href="https://colorlib.com" rel="nofollow" target="_blank">Colorlib</a><br/>
                          Extension for Yii framework 2 by
                          <a href="http://yiister.ru" rel="nofollow" target="_blank">Yiister</a>
                      </div>
                      <div class="clearfix"></div>
                  </footer>
                  <!-- /footer content -->
b66c9c5a   Alexey Boroda   -Admin template s...
323
              </div>
b66c9c5a   Alexey Boroda   -Admin template s...
324
          
567888e8   Yarik   Widgets
325
326
327
328
329
330
331
332
333
334
335
          </div>
          
          <div id="custom_notifications" class="custom-notifications dsp_none">
              <ul class="list-unstyled notifications clearfix" data-tabbed_notifications="notif-group">
              </ul>
              <div class="clearfix"></div>
              <div id="notif-group" class="tabbed_notifications"></div>
          </div>
          <!-- /footer content -->
          <?php $this->endBody(); ?>
      </body>
1755c393   Yarik   Basic template in...
336
  </html>
b66c9c5a   Alexey Boroda   -Admin template s...
337
  <?php $this->endPage(); ?>