Blame view

frontend/views/landing/view.php 1.39 KB
c1a6bfd3   Lex   added landing pag...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?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>
4d3f2e82   Lex   statically added ...
16
17
18
          <!-- 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>
c1a6bfd3   Lex   added landing pag...
19
20
21
          <meta charset="UTF-8" />
          <meta name="viewport" content="width=device-width, initial-scale=1.0" />
          <meta name="description" content="<?=$seo->desc; ?>">
af4ab46e   Lex   landing styles up...
22
23
24
          <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">
a4d0dbe3   Lex   adedd icon to lan...
25
          <link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico">
c1a6bfd3   Lex   added landing pag...
26
          <title><?=$seo->title; ?></title>
4d3f2e82   Lex   statically added ...
27
          <link rel="stylesheet" href="./css/css_min.css">
c1a6bfd3   Lex   added landing pag...
28
29
30
31
      </head>
      <body>
          <?= $model->body ?>
      </body>
4d3f2e82   Lex   statically added ...
32
33
      <script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
      <script src="./js/landing_min.js"></script>
c1a6bfd3   Lex   added landing pag...
34
    </html>