Blame view

frontend/views/site/contacts.php 1012 Bytes
c7f222e2   Artem   first
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
26
27
28
29
30
31
32
  <?php
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
  /* @var $form yii\bootstrap\ActiveForm */
  /* @var $model \frontend\models\ContactForm */
  
  $this->title = 'Контакты';
  ?>
  <script src="http://maps.google.com/maps/api/js?sensor=false"></script>
  <div class="items-index index_contact_page ">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <p class="bold_row" >г. Киев, ул. Березняковская, 29Б</p>
      <div>
          <p class="bold_row">Отдел запчастей</p>
          <p>(044) 360-70-47 (Александр)</p>
          <p>(067) 800-01-14 (Александр)</p>
          <p>(093) 744-40-44</p>
  
          <p class="bold_row" >Мастер-приемщик</p>
          <p>(067) 378-77-76</p>
      </div>
      <div class="work_days">
          <p class="bold_row">Режим работы</p>
          <p>Пн.- Сб. с 9 до 19</p>
          <p>Вс. - Выходной</p>
      </div>
      <div id="google-map-contacts" style="width: 660px; height: 550px;"></div>
  </div>