-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrowsePosts.php
More file actions
30 lines (29 loc) · 1008 Bytes
/
browsePosts.php
File metadata and controls
30 lines (29 loc) · 1008 Bytes
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
<!doctype html>
<html lang="en">
<head>
<?php include("php/head.php"); ?>
<title>Browse Posts</title>
</head>
<body>
<?php include("php/header.php"); ?>
<?php include("php/browsePosts/outputPosts.php"); ?>
<main>
<div class="container mt-4">
<div class="row">
<div class="col-12 order-last col-md-3 order-md-first">
<?php include("php/home/sidebar.inc.php") ?>
</div>
<div class="col-12 col-md-9">
<div class="row">
<div class="col-12">
<h3 class="font-weight-bold mb-3">Browse Posts</h3>
</div>
</div>
<?php outputPosts(); ?>
</div>
</div>
</div>
</main>
<?php include("php/footer.php"); ?>
</body>
</html>