Blame view

frontend/views/landing/view.php 848 Bytes
c1a6bfd3   Lex   added landing pag...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?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>
          <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...
19
20
21
          <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">
c1a6bfd3   Lex   added landing pag...
22
23
24
25
26
27
          <title><?=$seo->title; ?></title>
      </head>
      <body>
          <?= $model->body ?>
      </body>
    </html>