45 lines
1.9 KiB
PHP
45 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Privacy Policy - The People's Glossary</title>
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bg-white shadow-sm">
|
|
<nav class="navbar navbar-expand-lg navbar-light">
|
|
<div class="container">
|
|
<a class="navbar-brand fw-bold" href="/">The People's Glossary</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container section">
|
|
<h1 class="section-title">Privacy Policy</h1>
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<p>This is a placeholder for the Privacy Policy.</p>
|
|
<p>This page will detail how user data is collected, used, and protected. For now, please note that search queries may be logged for analytical purposes, but no personally identifiable information is stored.</p>
|
|
<a href="/" class="btn btn-primary">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer fixed-bottom">
|
|
<div class="container text-center">
|
|
<p class="text-light-color mb-0">© <?php echo date("Y"); ?> The People's Glossary. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
</body>
|
|
</html>
|