Commit 5d21f612a173762e2af0752c33bb5487a6140abf

Authored by Eugeny Galkovskiy
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 646  
647 647 <!-- *** FOOTER ***
648 648 _________________________________________________________ -->
649   -
  649 +
650 650 <footer id="footer">
651 651 <div class="container">
  652 + <div itemscope itemtype="http://schema.org/Organization">
652 653 <div class="col-md-5 col-sm-12">
653 654 <?php
654 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 658 <p style="max-width: 235px;"><?php echo \Yii::t('app', $settings->about); ?></p>
658 659 <?php
659 660 }
... ... @@ -694,16 +695,16 @@
694 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 696 <?php
696 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 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 702 else{
702 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 708 </table>
708 709 </p>
709 710 <!-- --><?php
... ... @@ -752,6 +753,7 @@
752 753 ) ?>. <?= $settings->name; ?>. <?=\Yii::t('app', 'footer_all_rights')?>.<br/>
753 754 <?=\Yii::t('app', 'footer_using_mats')?>.</p>
754 755 </div>
  756 + </div>
755 757 </div>
756 758 <!-- /.container -->
757 759 </footer>
... ...