header.php 776 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <header class="bar bar-nav">
  11. <a class="icon icon-menu pull-left open-panel" data-panel="#panel-left-menu"></a>
  12. <a href="<?= Yii::$service->url->homeUrl(); ?>" external>
  13. <h1 class='title header_logo'>
  14. <img class="lazy" data-src="<?= Yii::$service->image->getImgUrl('/custom/logo.png','appfront') ?>" />
  15. </h1>
  16. </a>
  17. <div class="pull-right">
  18. <a style="padding-right:0.4rem" class="icon icon-me open-panel" data-panel="#panel-left-account"></a>
  19. <a style="padding-right:0.4rem" class="icon icon-cart" href="<?= Yii::$service->url->getUrl('checkout/cart'); ?>" external></a>
  20. </div>
  21. </header>