Commit 6208d961757bf933a51918809660a5cead9c2077

Authored by Eugeny Galkovskiy
1 parent fa19d5d8

Пункты меню

Showing 1 changed file with 8 additions and 4 deletions   Show diff stats
frontend/views/layouts/main.php
... ... @@ -107,10 +107,10 @@
107 107 <p class="hidden-sm hidden-xs">
108 108 <?php
109 109 if (!empty($settings->phone)) {
110   - echo \Yii::t('app', 'Contact us on ');
111   - echo Html::a($settings->phone, "tel: {$settings->phone}");
  110 + echo \Yii::t('app', 'Связатся с нами ');
  111 + echo Html::a($settings->phone, "тел.: {$settings->phone}");
112 112 if (!empty($settings->email)) {
113   - echo \Yii::t('app', ' or ');
  113 + echo \Yii::t('app', ' или ');
114 114 echo Html::a($settings->email, "mailto:$settings->email");
115 115 }
116 116 }
... ... @@ -295,11 +295,15 @@
295 295 ];
296 296 }
297 297 $items[] = [
  298 + 'label' => \Yii::t('app', 'Цены'),
  299 + 'url' => [ 'site/price' ],
  300 + ];
  301 + $items[] = [
298 302 'label' => \Yii::t('app', 'Контакты'),
299 303 'url' => [ 'site/contact' ],
300 304 ];
301 305 $items[] = [
302   - 'label' => \Yii::t('app', 'О нас'),
  306 + 'label' => \Yii::t('app', 'О клинике'),
303 307 'url' => [ 'site/about' ],
304 308 ];
305 309 echo Nav::widget(
... ...