view.php
1.39 KB
<?php
use artbox\core\components\SeoComponent;
use yii\helpers\Html;
use yii\web\View;
/**
* @var View $this
* @var SeoComponent $seo
*/
$seo = \Yii::$app->get('seo');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z8ZK9B3YX5"></script>
<script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-Z8ZK9B3YX5'); </script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="<?=$seo->desc; ?>">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico">
<title><?=$seo->title; ?></title>
<link rel="stylesheet" href="./css/css_min.css">
</head>
<body>
<?= $model->body ?>
</body>
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script src="./js/landing_min.js"></script>
</html>