Blame view

frontend/views/search/project.php 27.6 KB
fbdb1f1c   Yarik   test
1
  <?php
ad6304d6   Yarik   test
2
3
4
5
      /**
       * @var View               $this
       * @var TenderSearch       $model
       * @var ActiveDataProvider $dataProvider
39a34915   Yarik   Commit
6
       * @var array              $specializations
ad6304d6   Yarik   test
7
8
9
       * @var array              $currencies
       * @var array              $payments
       */
39a34915   Yarik   Commit
10
      use common\models\Specialization;
ad6304d6   Yarik   test
11
12
13
14
15
16
17
18
      use common\models\TenderSearch;
      use kartik\select2\Select2;
      use yii\data\ActiveDataProvider;
      use \yii\helpers\Html;
      use yii\web\JsExpression;
      use yii\web\View;
      use yii\widgets\ActiveForm;
      use yii\widgets\ListView;
394d4a6a   Yarik   Commit
19
      $this->title = 'Proektant.net';
fbdb1f1c   Yarik   test
20
  
fbdb1f1c   Yarik   test
21
22
23
24
25
26
27
  ?>
  
  <div class="section-box content">
      <div class="section-box-22">
          <div class="box-wr">
              <div class="box-all">
                  <div class="left-search-work">
ad6304d6   Yarik   test
28
29
30
31
32
33
                      <?php
                          $form = ActiveForm::begin([
                              'method'  => 'get',
                              'options' => [ 'class' => 'search-work-form' ],
                              'action'  => [ '' ],
                          ]);
93a7a3c1   Yarik   test
34
35
36
37
38
                          echo $form->field($model, 'info', [ 'options' => [ 'class' => 'info-search-input' ] ])
                                    ->label('Поиск')
                                    ->textInput([ 'class'       => 'form-control',
                                                  'placeholder' => 'Текст для поиска',
                                    ]);
39a34915   Yarik   Commit
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
                          ?>
                      <?php
                          // New specialization chooser
                      ?>
                      <div class="input-blocks-wrapper admin-menu-list">
                          <div class="input-blocks" style="width: 100%; margin-bottom: 5px">
                              <label>Специализации</label>
                              <div class="required"></div>
                          </div>
                          <div class="new-spec-block style">
                              <ul class="content-menu-first">
                                  <?php foreach($specializations as $specialization): ?>
                                      <li data-img="<?= $specialization->image ?>">
                                          <span data-menu-bg="<?= $specialization->background ?>" style="background: <?= $specialization->background ?>"></span><a href="#"><?= $specialization->specialization_name ?></a>
                                          <ul>
                                              <?php foreach($specialization->children as $child_first): ?>
  
                                                  <?php if($child_first instanceof Specialization): ?>
                                                      <li>
                                                          <a href="#"><?= $child_first->specialization_name ?></a>
                                                          <ul>
                                                              <?php foreach($child_first->children as $child_second): ?>
                                                                  <?php if($child_first instanceof Specialization): ?>
                                                                      <li>
                                                                          <a href="#" title="<?= $child_second->specialization_name ?>">
                                                                              <?= $form->field($model, "specialization[{$child_second->specialization_id}]", [
                                                                                  'template' => '{input}{label}{hint}{error}',
                                                                              ])
                                                                                       ->label('<span></span>' . $child_second->specialization_name)
                                                                                       ->checkbox([
                                                                                           'value'   => $child_second->specialization_id,
                                                                                           'label'   => NULL,
                                                                                           'uncheck' => NULL,
                                                                                           'class'   => 'custom-check',
                                                                                       ], false) ?>
                                                                          </a>
                                                                      </li>
                                                                  <?php endif; ?>
                                                              <?php endforeach; ?>
                                                          </ul>
                                                      </li>
                                                  <?php endif; ?>
                                              <?php endforeach; ?>
  
                                          </ul>
                                      </li>
                                  <?php endforeach; ?>
                              </ul>
                          </div>
                          <div class="style admn-menu-err">
                              <div class="help-block">Необходимо выбрать хотя бы одну «специализацию».</div>
                          </div>
                      </div>
  
                      <div class="admin-specialization-selected style">
                          <ul></ul>
                      </div>
                      <?php
                          // End of new specialization chooser
                      ?>
                      <?php
                          /*
ad6304d6   Yarik   test
101
102
                          echo $form->field($model, 'specialization')
                                    ->dropDownList($specialization, [ 'prompt' => 'Любая' ]);
39a34915   Yarik   Commit
103
                           */
ad6304d6   Yarik   test
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
  
                          echo $form->field($model, 'city')
                                    ->widget(Select2::classname(), [
                                        'options'       => [ 'placeholder' => 'Выбор города ...' ],
                                        'pluginOptions' => [
                                            'allowClear'         => true,
                                            'minimumInputLength' => 3,
                                            'ajax'               => [
                                                'url'      => \yii\helpers\Url::to([ 'site/city' ]),
                                                'dataType' => 'json',
                                                'data'     => new JsExpression('function(params) { return {q:params.term}; }'),
                                            ],
                                            'escapeMarkup'       => new JsExpression('function (markup) { return markup; }'),
                                            'templateResult'     => new JsExpression('function(city) { return city.text; }'),
                                            'templateSelection'  => new JsExpression('function (city) { return city.text; }'),
                                        ],
                                    ]);
  
                      ?>
                      <div class="blocks-check-list-wrapp">
                          <div class="blocks-check-title">Бюджет</div>
                          <div class="form-price-wr">
                              <?= $form->field($model, 'budget_from', [
                                  'template' => "{input}\n{error}",
                                  'options'  => [ 'tag' => 'span' ],
                              ])
                                       ->textInput([ 'placeholder' => $model->getAttributeLabel('budget_from') ]) ?>
                              <?= $form->field($model, 'budget_to', [
                                  'template' => "{input}\n{error}",
                                  'options'  => [ 'tag' => 'span' ],
                              ])
                                       ->textInput([ 'placeholder' => $model->getAttributeLabel('budget_to') ]) ?>
                              <?= $form->field($model, 'budget_currency', [
                                  'template' => "{input}\n{error}",
                                  'options'  => [ 'class' => 'blocks-check-list-wrapp check-valuta' ],
                              ])
                                       ->dropDownList($currencies) ?>
                          </div>
2261f70a   Yarik   test
142
143
144
145
                          <?= $form->field($model, 'contractual', [
                              'template' => "{input}\n{label}\n{hint}\n{error}",
                              'options'  => [ 'class' => 'blocks-check-list' ],
                          ])
239b3249   Yarik   test
146
                                   ->label("<span></span>{$model->getAttributeLabel('contractual')}", [ 'class' => '' ])
be662d1f   Yarik   test
147
                                   ->checkbox([ ], false) ?>
ad6304d6   Yarik   test
148
149
150
151
                          <?= $form->field($model, 'payment', [ 'template' => "{input}\n{error}" ])
                                   ->checkboxList($payments, [
                                       'item' => function($index, $label, $name, $checked, $value) {
                                           $return = '<div class="blocks-check-list">';
2261f70a   Yarik   test
152
153
                                           $return .= '<input type="checkbox" ' . ( $checked ? "checked" : "" ) . ' name="' . $name . '" class="check-search" value="' . $value . '" id="theme-' . $index . '">';
                                           $return .= '<label for="theme-' . $index . '"><span></span>' . $label . '</label>';
ad6304d6   Yarik   test
154
155
                                           $return .= '</div>';
                                           return $return;
2261f70a   Yarik   test
156
                                       },
ad6304d6   Yarik   test
157
158
159
160
161
162
163
164
165
                                   ]); ?>
                      </div>
                      <div class="blocks-check-list-submit">
                          <?php
                              echo Html::submitInput('Найти');
                          ?>
                      </div>
                      <?php
                          $form->end();
ad6304d6   Yarik   test
166
                      ?>
fbdb1f1c   Yarik   test
167
168
                  </div>
                  <div class="right-search-work">
ad6304d6   Yarik   test
169
                      <div class="search-worker-title style">Сейчас <?= $dataProvider->totalCount ?> предложений</div>
fbdb1f1c   Yarik   test
170
                      <div class="search-profile-blocks-wr style">
ad6304d6   Yarik   test
171
172
173
174
175
                          <?= ListView::widget([
                              'dataProvider' => $dataProvider,
                              'itemView'     => '_projects_list_view',
                              'layout'       => "{items}\n<div class='navi-buttons-wr style navi-buttons-yet-wr'>{pager}</div>",
                          ]); ?>
fbdb1f1c   Yarik   test
176
177
178
179
180
181
182
                      </div>
  
                  </div>
              </div>
          </div>
      </div>
      <div>
93a7a3c1   Yarik   test
183
          <?php
394d4a6a   Yarik   Commit
184
              /*
93a7a3c1   Yarik   test
185
              ?>
fbdb1f1c   Yarik   test
186
187
188
189
190
          <div class="section-box" style="height: 720px; overflow: hidden">
              <div class="map-settings-opacity"></div>
              <div class="map-settings-wrapp">
                  <div class="min_markers-wrapp">
                      <ul class="min_markers">
ad6304d6   Yarik   test
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
                          <li class="active_m"><span></span>
                              <p>Все</p></li>
                          <li><span><img src="/images/markers/marker-min-1.png"/></span>
                              <p>Жилые</p></li>
                          <li><span><img src="/images/markers/marker-min-2.png"/></span>
                              <p>Офисные</p></li>
                          <li><span><img src="/images/markers/marker-min-3.png"/></span>
                              <p>Торговые</p></li>
                          <li><span><img src="/images/markers/marker-min-4.png"/></span>
                              <p>Мосты</p></li>
                          <li><span><img src="/images/markers/marker-min-5.png"/></span>
                              <p>Дороги</p></li>
                          <li><span><img src="/images/markers/marker-min-6.png"/></span>
                              <p>Сооружения</p></li>
                          <li><span><img src="/images/markers/marker-min-7.png"/></span>
                              <p>Склады</p></li>
                          <li><span><img src="/images/markers/marker-min-8.png"/></span>
                              <p>Заводы</p></li>
                          <li><span><img src="/images/markers/marker-min-9.png"/></span>
                              <p>Разное</p></li>
fbdb1f1c   Yarik   test
211
212
                      </ul>
                      <ul class="min_markers_two">
ad6304d6   Yarik   test
213
                          <li><span><img src="/images/markers/marker-min-10.png"/></span>
239b3249   Yarik   test
214
                              <p><?= Yii::t('app', 'projects') ?></p></li>
ad6304d6   Yarik   test
215
216
                          <li><span><img src="/images/markers/marker-min-11.png"/></span>
                              <p>подряды</p></li>
fbdb1f1c   Yarik   test
217
218
219
220
221
222
                      </ul>
                  </div>
              </div>
              <div class="slider-map"></div>
              <div id="map_cloud" style="display: none;">
                  <script type="text/javascript">
ad6304d6   Yarik   test
223
224
                      function initialize()
                      {
fbdb1f1c   Yarik   test
225
226
                          var start_position = new google.maps.LatLng('56', '30');
                          var settings = {
ad6304d6   Yarik   test
227
                              zoom : 7, //                scrollwheel: false,
239b3249   Yarik   test
228
229
                              center : start_position,
                              mapTypeControl : false,
ad6304d6   Yarik   test
230
231
232
                              mapTypeControlOptions : {style : google.maps.MapTypeControlStyle.DROPDOWN_MENU},
                              navigationControl : false,
                              navigationControlOptions : {style : google.maps.NavigationControlStyle.SMALL},
239b3249   Yarik   test
233
234
235
236
237
                              scaleControl : false,
                              streetViewControl : false,
                              rotateControl : false,
                              zoomControl : false,
                              mapTypeId : google.maps.MapTypeId.ROADMAP
ad6304d6   Yarik   test
238
                          };
fbdb1f1c   Yarik   test
239
240
                          var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
  
ad6304d6   Yarik   test
241
242
                          var image1 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-1.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
243
                          );
ad6304d6   Yarik   test
244
245
                          var image2 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-2.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
246
                          );
ad6304d6   Yarik   test
247
248
                          var image3 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-3.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
249
                          );
ad6304d6   Yarik   test
250
251
                          var image4 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-4.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
252
                          );
ad6304d6   Yarik   test
253
254
                          var image5 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-5.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
255
                          );
ad6304d6   Yarik   test
256
257
                          var image6 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-6.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
258
                          );
ad6304d6   Yarik   test
259
260
                          var image7 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-7.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
261
                          );
ad6304d6   Yarik   test
262
263
                          var image8 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-8.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
264
                          );
ad6304d6   Yarik   test
265
266
                          var image9 = new google.maps.MarkerImage(
                              '/images/markers/marker-we-9.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
267
                          );
ad6304d6   Yarik   test
268
269
                          var image10 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-1.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
270
                          );
ad6304d6   Yarik   test
271
272
                          var image11 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-2.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
273
                          );
ad6304d6   Yarik   test
274
275
                          var image12 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-3.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
276
                          );
ad6304d6   Yarik   test
277
278
                          var image13 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-4.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
279
                          );
ad6304d6   Yarik   test
280
281
                          var image14 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-5.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
282
                          );
ad6304d6   Yarik   test
283
284
                          var image15 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-6.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
285
                          );
ad6304d6   Yarik   test
286
287
                          var image16 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-7.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
288
                          );
ad6304d6   Yarik   test
289
290
                          var image17 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-8.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
291
                          );
ad6304d6   Yarik   test
292
293
                          var image18 = new google.maps.MarkerImage(
                              '/images/markers/marker-empl-9.png', new google.maps.Size(21, 32), new google.maps.Point(0, 0), new google.maps.Point(16, 35)
fbdb1f1c   Yarik   test
294
295
296
297
                          );
  
                          var markers = [];
  
ad6304d6   Yarik   test
298
299
                          var marker = new google.maps.Marker(
                              {
239b3249   Yarik   test
300
301
302
303
                                  position : new google.maps.LatLng('56', '35.3'),
                                  map : map,
                                  title : 'Marker Title2',
                                  icon : image1
ad6304d6   Yarik   test
304
305
                              }
                          );
fbdb1f1c   Yarik   test
306
307
                          markers.push(marker);
  
ad6304d6   Yarik   test
308
309
                          var marker = new google.maps.Marker(
                              {
239b3249   Yarik   test
310
311
312
313
                                  position : new google.maps.LatLng('56', '36'),
                                  map : map,
                                  title : 'Marker Title2',
                                  icon : image2
ad6304d6   Yarik   test
314
315
                              }
                          );
fbdb1f1c   Yarik   test
316
317
                          markers.push(marker);
  
ad6304d6   Yarik   test
318
319
                          var marker = new google.maps.Marker(
                              {
239b3249   Yarik   test
320
321
322
323
                                  position : new google.maps.LatLng('56', '34.5'),
                                  map : map,
                                  title : 'Marker Title3',
                                  icon : image18
ad6304d6   Yarik   test
324
325
                              }
                          );
fbdb1f1c   Yarik   test
326
327
                          markers.push(marker);
  
ad6304d6   Yarik   test
328
329
                          var marker = new google.maps.Marker(
                              {
239b3249   Yarik   test
330
331
332
333
                                  position : new google.maps.LatLng('56', '35'),
                                  map : map,
                                  title : 'Marker Title4',
                                  icon : image13
ad6304d6   Yarik   test
334
335
                              }
                          );
fbdb1f1c   Yarik   test
336
337
                          markers.push(marker);
  
fbdb1f1c   Yarik   test
338
339
                          var clusterStyles = [
                              {
239b3249   Yarik   test
340
341
342
                                  url : '/images/markers/clasters.png',
                                  height : 36,
                                  width : 36
fbdb1f1c   Yarik   test
343
344
345
                              }
  
                          ];
ad6304d6   Yarik   test
346
347
                          markerClusterer = new MarkerClusterer(
                              map, markers, {
239b3249   Yarik   test
348
349
350
                                  maxZoom : 10,
                                  gridSize : 100,
                                  styles : clusterStyles
ad6304d6   Yarik   test
351
352
353
354
                              }
                          );
                          //балун
                          var infowindow = new google.maps.InfoWindow(
fbdb1f1c   Yarik   test
355
                              {
ad6304d6   Yarik   test
356
357
358
359
360
361
362
363
364
                                  content : '<div style="width: 112px;"><a href="#" style="text-decoration: none; color: #333"><img style="width: 112px; height: 60px" src="/images/infowindow_marker_slider.jpg" alt=""/><p style="width: 100%; text-align: center; font-family: Ubuntu Bold; font-size: 11px;">Трц “Дарница”</p></a></div>'
                              }
                          );
                          google.maps.event.addListener(
                              marker, 'click', function()
                              {
                                  infowindow.open(map, this);
                              }
                          );
fbdb1f1c   Yarik   test
365
366
367
368
                      }
                  </script>
              </div>
              <div id="map_canvas" style="width: 100%; height:100%;"></div>
239b3249   Yarik   test
369
              <?php
394d4a6a   Yarik   Commit
370
                  */
239b3249   Yarik   test
371
372
              /* Решено убрать нижний слайдер
              ?>
fbdb1f1c   Yarik   test
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
              <div class="slider_map-wr">
                  <div class="slider_map_overlay"></div>
                  <div class="slider_map">
                      <div id="demo5" class="scroll-img">
                          <ul>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                              <li>
                                  <a href="#" class="slider_a">
                                      <div class="slider-marker-bl">
                                          <div class="slider-marker-bl-img">
                                              <img src="/images/marker_slider.jpg" alt=""/>
                                          </div>
                                          <div class="slider-marker-bl-text">
                                              <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div>
                                              <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div>
                                          </div>
                                      </div>
                                  </a>
                              </li>
                          </ul>
                      </div>
                      <div id="demo5-btn" class="text-center">
ad6304d6   Yarik   test
459
460
                          <a id="demo5-backward"></a>
                          <a id="demo5-forward"></a>
fbdb1f1c   Yarik   test
461
462
463
                      </div>
                  </div>
              </div>
239b3249   Yarik   test
464
465
              <?php
              */
93a7a3c1   Yarik   test
466
          ?>
fbdb1f1c   Yarik   test
467
      </div>
93a7a3c1   Yarik   test
468
469
  
  </div>
fbdb1f1c   Yarik   test
470
  </div>