-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·40 lines (37 loc) · 1.12 KB
/
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
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="<?= $sitelanguage ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/basetheme.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<style>
</style>
<?php
include "content/siteinformation.php";
include "content/themedocs.php";
$pagename = basename(__FILE__, ".php");
view_counter();
?>
<title><?php echo "Home - " . $sitetitle; ?></title>
</head>
<body>
<header class="pageheader">
<h1 class="title"><?php echo $sitetitle; ?></h1>
<?php if(file_exists($root_path."/content/logo.jpg")) {
echo '<img src="'.$root_path.'/content/logo.jpg" class="logo">';
} ?>
<nav>
<?php include "content/menu.php"; ?>
</nav>
</header>
<main>
<?php include "content/blog.php"; ?>
</main>
<footer>
<p><?php echo $footertext; ?></p>
</footer>
</body>
</html>