1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="initial-scale=1, maximum-scale=1">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <title><?= \Yii::$app->view->title; ?></title>
- <link rel="shortcut icon" href="<?= Yii::$service->url->getUrl('favicon.ico'); ?>">
- <link rel="apple-touch-icon" href="<?= Yii::$service->url->getUrl('apple-touch-icon.png'); ?>">
- <meta name="robots" content="INDEX,FOLLOW" />
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-159325062-2"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'UA-159325062-2');
- </script>
- <?php $parentThis->head() ?>
- <?= Yii::$service->userfrom->savePageData(); ?>
|