123456789101112131415161718192021222324252627 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <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" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-161463819-1"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag(){dataLayer.push(arguments);}
- gtag('js', new Date());
- gtag('config', 'UA-161463819-1');
- </script>
- <?php $parentThis->head() ?>
- <?= Yii::$service->userfrom->savePageData(); ?>
|