Commit 4d3f2e825f0dc5ae62aed37a6273db8f1d45b631
1 parent
d65644bb
statically added scripts to the code
Showing
1 changed file
with
6 additions
and
0 deletions
Show diff stats
frontend/views/landing/view.php
... | ... | @@ -13,6 +13,9 @@ |
13 | 13 | <!DOCTYPE html> |
14 | 14 | <html lang="en"> |
15 | 15 | <head> |
16 | + <!-- Google tag (gtag.js) --> | |
17 | + <script async src="https://www.googletagmanager.com/gtag/js?id=G-Z8ZK9B3YX5"></script> | |
18 | + <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-Z8ZK9B3YX5'); </script> | |
16 | 19 | <meta charset="UTF-8" /> |
17 | 20 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
18 | 21 | <meta name="description" content="<?=$seo->desc; ?>"> |
... | ... | @@ -21,8 +24,11 @@ |
21 | 24 | <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet"> |
22 | 25 | <link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico"> |
23 | 26 | <title><?=$seo->title; ?></title> |
27 | + <link rel="stylesheet" href="./css/css_min.css"> | |
24 | 28 | </head> |
25 | 29 | <body> |
26 | 30 | <?= $model->body ?> |
27 | 31 | </body> |
32 | + <script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script> | |
33 | + <script src="./js/landing_min.js"></script> | |
28 | 34 | </html> | ... | ... |