106 lines
5.5 KiB
PHP
106 lines
5.5 KiB
PHP
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Resources - Springfield Elementary</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<header class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-book-open"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path></svg>
|
|
Springfield Elementary
|
|
</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="index.php">Home</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="index.php#announcements">Announcements</a></li>
|
|
<li class="nav-item"><a class="nav-link active" href="resources.php">Resources</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#">Calendar</a></li>
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Login
|
|
</a>
|
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
|
<li><a class="dropdown-item" href="#">Parent Login</a></li>
|
|
<li><a class="dropdown-item" href="#">Teacher Login</a></li>
|
|
<li><a class="dropdown-item" href="#">Admin Login</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="py-5">
|
|
<div class="container">
|
|
<h1 class="text-center mb-5" style="color: var(--primary-color);">Documents & Resources</h1>
|
|
|
|
<?php
|
|
$resources = [
|
|
'School Forms' => [
|
|
[
|
|
'title' => 'Enrollment Application Form',
|
|
'description' => 'Required for all new students for the 2026-2027 school year.',
|
|
'file' => 'downloads/sample_form.pdf'
|
|
],
|
|
[
|
|
'title' => 'Permission Slip for Field Trip',
|
|
'description' => 'Permission slip for the upcoming trip to the Springfield Museum.',
|
|
'file' => 'downloads/sample_form.pdf'
|
|
]
|
|
],
|
|
'Learning Materials' => [
|
|
[
|
|
'title' => 'Grade 3 Mathematics Guide',
|
|
'description' => 'A guide for parents to help their children with 3rd-grade math concepts.',
|
|
'file' => 'downloads/learning_guide.pdf'
|
|
],
|
|
[
|
|
'title' => 'Summer Reading List',
|
|
'description' => 'Recommended reading list for all grade levels for the upcoming summer break.',
|
|
'file' => 'downloads/learning_guide.pdf'
|
|
]
|
|
]
|
|
];
|
|
?>
|
|
|
|
<?php foreach ($resources as $category => $items) : ?>
|
|
<h3 class="mb-3"><?php echo htmlspecialchars($category); ?></h3>
|
|
<div class="list-group mb-5">
|
|
<?php foreach ($items as $item) : ?>
|
|
<a href="<?php echo htmlspecialchars($item['file']); ?>" class="list-group-item list-group-item-action d-flex justify-content-between align-items-center" download>
|
|
<div>
|
|
<h5 class="mb-1"><?php echo htmlspecialchars($item['title']); ?></h5>
|
|
<p class="mb-1"><?php echo htmlspecialchars($item['description']); ?></p>
|
|
</div>
|
|
<button class="btn btn-primary">Download</button>
|
|
</a>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="bg-dark text-white text-center py-4">
|
|
<div class="container">
|
|
<p class="mb-0">© <?php echo date("Y"); ?> Springfield Elementary. All Rights Reserved.</p>
|
|
<p>123 School Lane, Springfield, USA</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|