-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.php
57 lines (44 loc) · 1.45 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php $root = $_SERVER['DOCUMENT_ROOT'];
include $root . '/include/php_stuff.php';?>
<!DOCTYPE html>
<html>
<head>
<meta name="og:title" name="og:title" content="TEMPLATE"/>
<meta name="og:description" property="og:description" content="description" />
<meta name="og:locale" property="og:locale" content="en_GB" />
<meta name="og:site_name" property="og:site_name" content="site name, like the title" />
<meta name="og:image" property="og:image" content="/media/dickbutt.png" />
<meta name="article" property="article" content="/home/article.md" />
<meta name="og:url" content="/home/" />
<link rel="manifest" href="/include/manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Home</title>
<?php include $root . "/include/includes.php";?>
<style type="text/css">
.article {
position: static;
line-height: 1.6;
font-size: 15px;
}
</style>
<?php include $root . "/include/nav.php";?>
<!-- End of Navbar -->
<!-- Article -->
</head>
<body>
<br />
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php include $root . "/include/article.php";?>
<br />
<?php include $root . "/include/comments_html.php"?>
</div>
</div>
</div>
<br />
<script>
</script>
</body>
</html>