-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle_post.php
125 lines (92 loc) · 2.5 KB
/
single_post.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE HTML>
<!-- Starts the session -->
<?php require_once('config.php') ?>
<!-- public functions perform database operations for retreiving blog data -->
<?php require_once('includes/public_functions.php') ?>
<?php
if (isset($_GET['post-slug'])) {
$post = getPost($_GET['post-slug']);
}
$topics = getAllTopics();
?>
<html>
<head>
<title> <?php echo $post['title'] ?> | Adam's Blog</title>
<!---Head section--->
<?php require_once('includes/head_section.php') ?>
<!---// Header section--->
</head>
<body>
<div id="main">
<!---Header--->
<?php require_once('includes/header.php') ?>
<!--START-MENUBAR-->
<div id="menubar">
<ul id="menu">
<li >
<a href="index.php">Home</a>
</li>
<li>
<a href="blog.php">Blog</a>
</li>
<li>
<a href="contact.php">Contact Me</a>
</li>
</ul>
</div>
<!--END-MENUBAR-->
</div>
<!--END-HEADER-->
<!--START-SITE-CONTENT-->
<div id="site_content">
<!--START-CONTENT-->
<div id="content">
<div class="blogcontent" >
<!-- Page wrapper -->
<div class="blogpost-wrapper">
<!-- full post div -->
<div class="blogfull-post-div">
<?php if ($post['published'] == false): ?>
<h2 class="blogpost-title">Sorry... This post has not been published</h2>
<?php else: ?>
<h2 class="blogpost-title"><?php echo $post['title']; ?></h2>
<div class="blogpost-body-div">
<?php echo html_entity_decode($post['body']); ?>
</div>
<?php endif ?>
</div>
<!-- // full post div -->
</div>
<!-- // Page wrapper -->
<!-- post sidebar -->
<div class="blogpost-sidebar">
<div class="blogcard">
<div class="blogcard-header">
<h2>Topics</h2>
</div>
<div class="blogcard-content">
<?php foreach ($topics as $topic): ?>
<a
href="<?php echo BASE_URL . 'filteredPosts.php?topic=' . $topic['id'] ?>">
<?php echo $topic['name']; ?>
</a>
<?php endforeach ?>
</div>
</div>
</div>
<!-- // post sidebar -->
</div>
</div>
<!-- // content -->
<!-- // content -->
</div>
<!-- // container -->
</div>
<!--START-FOOTER-->
<div id="footer">
<?php include_once 'includes/footer.php';?>
</div>
<!--END-FOOTER-->
</div>
</body>
</html>