Commit 5d21f612a173762e2af0752c33bb5487a6140abf
1 parent
15b6a5bc
h titles
Showing
1 changed file
with
7 additions
and
5 deletions
Show diff stats
frontend/views/layouts/main.php
@@ -646,14 +646,15 @@ | @@ -646,14 +646,15 @@ | ||
646 | 646 | ||
647 | <!-- *** FOOTER *** | 647 | <!-- *** FOOTER *** |
648 | _________________________________________________________ --> | 648 | _________________________________________________________ --> |
649 | - | 649 | + |
650 | <footer id="footer"> | 650 | <footer id="footer"> |
651 | <div class="container"> | 651 | <div class="container"> |
652 | + <div itemscope itemtype="http://schema.org/Organization"> | ||
652 | <div class="col-md-5 col-sm-12"> | 653 | <div class="col-md-5 col-sm-12"> |
653 | <?php | 654 | <?php |
654 | if (!empty($settings->about)) { | 655 | if (!empty($settings->about)) { |
655 | ?> | 656 | ?> |
656 | - <div class="h4"><?php echo \Yii::t('app', 'About us'); ?></div> | 657 | + <div class="h4" itemprop="description"><?php echo \Yii::t('app', 'About us'); ?></div> |
657 | <p style="max-width: 235px;"><?php echo \Yii::t('app', $settings->about); ?></p> | 658 | <p style="max-width: 235px;"><?php echo \Yii::t('app', $settings->about); ?></p> |
658 | <?php | 659 | <?php |
659 | } | 660 | } |
@@ -694,16 +695,16 @@ | @@ -694,16 +695,16 @@ | ||
694 | <tr><td><b><i class="fa fa-map-marker" aria-hidden="true"></i></b></td><td>02095, <?=\Yii::t('app', $settings->country)?>, <?=\Yii::t('app', 'city_short')?>. <?=\Yii::t('app', $settings->city)?> <br/><?=\Yii::t('app', $settings->street)?>, <?=\Yii::t('app', $settings->house)?>, <?=\Yii::t('app', 'office')?> <?=\Yii::t('app', $settings->office)?></td></tr> | 695 | <tr><td><b><i class="fa fa-map-marker" aria-hidden="true"></i></b></td><td>02095, <?=\Yii::t('app', $settings->country)?>, <?=\Yii::t('app', 'city_short')?>. <?=\Yii::t('app', $settings->city)?> <br/><?=\Yii::t('app', $settings->street)?>, <?=\Yii::t('app', $settings->house)?>, <?=\Yii::t('app', 'office')?> <?=\Yii::t('app', $settings->office)?></td></tr> |
695 | <?php | 696 | <?php |
696 | if(!empty($settings->phone)){ | 697 | if(!empty($settings->phone)){ |
697 | - echo '<tr><td><b><i class="fa fa-phone" aria-hidden="true"></i></b></td><td><a href="tel:'.$settings->phone.'">'.$settings->phone.'</a>'; | 698 | + echo '<tr><td><b><i class="fa fa-phone" aria-hidden="true"></i></b></td><td><a href="tel:'.$settings->phone.'"><span itemprop="telephone">'.$settings->phone.'</span></a>'; |
698 | if(!empty($settings->phone2)){ | 699 | if(!empty($settings->phone2)){ |
699 | - echo '<br/><a href="tel:'.$settings->phone2.'">'.$settings->phone2.'</a></td></tr>'; | 700 | + echo '<br/><a href="tel:'.$settings->phone2.'"><span itemprop="telephone">'.$settings->phone2.'</span></a></td></tr>'; |
700 | } | 701 | } |
701 | else{ | 702 | else{ |
702 | echo '</td></tr>'; | 703 | echo '</td></tr>'; |
703 | } | 704 | } |
704 | } | 705 | } |
705 | ?> | 706 | ?> |
706 | - <tr><td><b><i class="fa fa-envelope" aria-hidden="true"></i></b></td><td><a href="mailto:<?=$settings->email?>"><?=$settings->email?></td></tr> | 707 | + <tr><td><b><i class="fa fa-envelope" aria-hidden="true"></i></b></td><td><span itemprop="email"><a href="mailto:<?=$settings->email?>"><?=$settings->email?></a></span></td></tr> |
707 | </table> | 708 | </table> |
708 | </p> | 709 | </p> |
709 | <!-- --><?php | 710 | <!-- --><?php |
@@ -752,6 +753,7 @@ | @@ -752,6 +753,7 @@ | ||
752 | ) ?>. <?= $settings->name; ?>. <?=\Yii::t('app', 'footer_all_rights')?>.<br/> | 753 | ) ?>. <?= $settings->name; ?>. <?=\Yii::t('app', 'footer_all_rights')?>.<br/> |
753 | <?=\Yii::t('app', 'footer_using_mats')?>.</p> | 754 | <?=\Yii::t('app', 'footer_using_mats')?>.</p> |
754 | </div> | 755 | </div> |
756 | + </div> | ||
755 | </div> | 757 | </div> |
756 | <!-- /.container --> | 758 | <!-- /.container --> |
757 | </footer> | 759 | </footer> |