-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
31 lines (31 loc) · 1011 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="<?php echo Theme::lang() ?>">
<head>
<meta charset="UTF-8">
<meta name="google-site-verification" content="lO3pNP7czUCL3XA6pca2iX1eKo91FdnRZ5ikLWKxrrc" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php echo Theme::metaTagTitle(); ?>
<?php echo Theme::metaTagDescription(); ?>
<?php echo Theme::favicon('img/favicon.png'); ?>
<script src="https://cdn.tailwindcss.com"></script>
<?php echo Theme::css('css/blug.css'); ?>
<?php Theme::plugins('siteHead'); ?>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6422989243541464"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container-fluid">
<?php Theme::plugins('siteBodyBegin'); ?>
<?php
if ($WHERE_AM_I == 'page') {
include(THEME_DIR_PHP.'page.php');
} else {
include(THEME_DIR_PHP.'home.php');
}
?>
<?php include(THEME_DIR_PHP.'footer.php'); ?>
<?php Theme::plugins('siteBodyEnd'); ?>
</div>
<?php echo Theme::jquery(); ?>
</body>
</html>