-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
116 lines (98 loc) · 4.79 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
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
<?php
session_start();
include "connection.php";
$query = mysqli_query($connect, "SELECT * FROM posts");
$results = mysqli_fetch_all($query, MYSQLI_ASSOC);
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Simple Blog - Codepolitan</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Dependencies -->
<script src="js/jquery-3.4.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark justify-content-between">
<a class="navbar-brand" href="index.php">Simple Blog</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.php">Home</a>
</li>
<?php if(!$_SESSION) : ?>
<li class="nav-item active">
<a class="nav-link" href="login.php">Login</a>
</li>
<?php endif; ?>
<?php if($_SESSION) : ?>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Hi, <?php echo $_SESSION['username'] ?>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="dashboard.php">Dashboard</a>
<a class="dropdown-item" href="logout.php">Log Out</a>
</div>
</li>
<?php endif; ?>
</ul>
</div>
</nav>
</header>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1>Simple Blog Example</h1>
<p class="lead text-muted">Something short and leading about the collection below—its contents, the creator, etc. Make it short and sweet, but not too short so folks don’t simply skip over it entirely.</p>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<?php foreach($results as $result) : ?>
<div class="col-md-4">
<div class="card mb-4 shadow-sm">
<?php if($result['cover_url']) : ?>
<img src="<?php echo $result['cover_url'] ?>" alt="Cover Image" class="card-img-top">
<?php endif; ?>
<div class="card-body">
<p class="card-text"><?php echo $result['title'] ?></p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="read-post.php?id=<?php echo $result['id'] ?>" class="btn btn-sm btn-outline-secondary">View</a>
<?php if($_SESSION) : ?>
<a href="edit-post.php?id=<?php echo $result['id'] ?>" class="btn btn-sm btn-outline-secondary">Edit</a>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p>Album example is © Bootstrap, but please download and customize it for yourself!</p>
<p>New to Bootstrap? <a href="https://getbootstrap.com/">Visit the homepage</a> or read our <a href="/docs/4.5/getting-started/introduction/">getting started guide</a>.</p>
</div>
</footer>
</body>
</html>