69 lines
2.4 KiB
PHP
69 lines
2.4 KiB
PHP
<?php
|
|
require_once 'db/config.php';
|
|
|
|
if (!isset($_GET['id'])) {
|
|
header('Location: blog.php');
|
|
exit;
|
|
}
|
|
|
|
$pdo = db();
|
|
$stmt = $pdo->prepare('SELECT * FROM posts WHERE id = ?');
|
|
$stmt->execute([$_GET['id']]);
|
|
$post = $stmt->fetch();
|
|
|
|
if (!$post) {
|
|
header('Location: blog.php');
|
|
exit;
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo htmlspecialchars($post['title']); ?> - Ontario Custom Mortgages</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">Ontario Custom Mortgages</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item"><a class="nav-link" href="/#portfolio">Portfolio</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="/#about">About</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="/blog.php">Blog</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="/#contact">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container py-5">
|
|
<div class="row">
|
|
<div class="col-md-8 offset-md-2">
|
|
<h1 class="mb-4"><?php echo htmlspecialchars($post['title']); ?></h1>
|
|
<p class="text-muted">Posted on <?php echo date('F j, Y', strtotime($post['created_at'])); ?></p>
|
|
<hr>
|
|
<div class="post-content">
|
|
<?php echo nl2br(htmlspecialchars($post['content'])); ?>
|
|
</div>
|
|
<hr>
|
|
<a href="blog.php" class="btn btn-secondary">Back to Blog</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="bg-light text-center py-4 mt-5">
|
|
<p>© <?php echo date("Y"); ?> Ontario Custom Mortgages. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|