-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
242 lines (207 loc) · 6.62 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
// Enable error reporting for debugging (remove this in production)
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Connect to SQLite database
$db = new SQLite3('admin_users.db');
// Get homepage content
$stmt = $db->prepare("SELECT content FROM page_content WHERE page_name = 'index.php'");
$result = $stmt->execute();
$row = $result->fetchArray(SQLITE3_ASSOC);
$homepage_content = $row['content'] ?? "<h2>Welcome to the Polar Express</h2><p>Enjoy a magical ride with us!</p>";
// Fetch the footer content from the database
$footerStmt = $db->prepare("SELECT content FROM page_content WHERE page_name = 'footer'");
$footerResult = $footerStmt->execute();
$footerRow = $footerResult->fetchArray(SQLITE3_ASSOC);
// Use retrieved footer content or fallback text
$footerContent = $footerRow && isset($footerRow['content']) ? $footerRow['content'] : "<p>Footer content goes here.</p>";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Polar Express</title>
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* Page Background */
body {
background-color: #003f74;
color: #ffffff;
}
/* Header Section */
.header {
position: relative;
width: 90%;
max-width: 1600px;
margin: 0 auto;
height: auto;
text-align: center;
}
.header img {
width: 100%;
height: auto;
display: block;
}
/* Desktop Menu */
.menu {
position: absolute;
top: 185px; /* Lowered by 15px */
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: nowrap;
white-space: nowrap; /* Prevent line breaks for multi-word items */
}
.menu a {
text-decoration: none;
font-size: 18px;
font-weight: bold;
color: gold;
padding: 5px 10px;
transition: 0.3s;
}
.menu a:hover {
color: white;
border-bottom: 2px solid white;
}
/* Mobile Menu */
.mobile-menu {
display: none;
position: absolute;
bottom: 10px;
right: 10px;
z-index: 10;
}
.mobile-menu button {
background-color: gold;
color: #003f74;
border: none;
padding: 10px;
font-size: 18px;
cursor: pointer;
border-radius: 5px;
}
/* Mobile Menu Links */
.mobile-links {
display: none;
position: absolute;
bottom: -220px;
right: 10px;
background-color: #003f74;
border: 1px solid white;
padding: 10px;
z-index: 100;
}
.mobile-links a {
display: block;
color: gold;
text-decoration: none;
margin-bottom: 10px;
}
.mobile-links a:hover {
color: white;
}
/* Below Header Section */
.info-section {
padding: 20px;
text-align: center;
}
.info-section h2 {
color: gold;
margin-bottom: 10px;
}
.info-section p {
font-size: 18px;
margin-bottom: 10px;
}
/* Rotary Club Section */
.rotary-section {
margin-top: 20px;
text-align: center;
}
.rotary-section img {
width: 150px;
margin: 10px auto;
}
.rotary-section a {
text-decoration: none;
color: gold;
font-size: 18px;
display: block;
}
/* Responsive Design */
@media (max-width: 1280px) {
.menu {
display: none; /* Always hide the desktop menu */
}
.mobile-menu {
display: block; /* Show collapsed menu button */
}
}
</style>
</head>
<body>
<!-- Header Section -->
<div class="header">
<img src="PEHeader.jpg" alt="Polar Express Header">
<!-- Desktop Menu -->
<nav class="menu">
<a href="index.php">Home</a>
<a href="ticket.php">Tickets</a>
<a href="gallery.php">Photo Gallery</a>
<a href="volunteer_signup.php">Volunteer</a>
<a href="sponsors.php">Sponsors</a>
<a href="faqs.php">FAQs</a>
<a href="merchandise.php">Merchandise</a>
<a href="contact.php">Contact</a>
</nav>
<!-- Mobile Menu -->
<div class="mobile-menu">
<button onclick="toggleMenu()">☰ Menu</button>
<div class="mobile-links" id="mobileLinks">
<a href="index.php">Home</a>
<a href="ticket.php">Tickets</a>
<a href="gallery.php">Photo Gallery</a>
<a href="volunteer_signup.php">Volunteer</a>
<a href="sponsors.php">Sponsors</a>
<a href="faqs.php">FAQs</a>
<a href="merchandise.php">Merchandise</a>
<a href="contact.php">Contact</a>
</div>
</div>
</div>
<!-- Dynamic Content Section (Below Header, Above Rotary) -->
<div class="info-section">
<?php echo $homepage_content; ?>
</div>
<!-- Rotary Club Section (Permanent) -->
<div class="rotary-section">
<h2>Presented by White River Rotary Club</h2>
<a href="http://whiteriverrotaryusa.org/" target="_blank">
<img src="rotary.png" alt="Rotary Club Logo">
</a>
<a href="http://whiteriverrotaryusa.org/" target="_blank">Visit the Rotary Club</a>
</div>
<!-- Dynamic Footer Content -->
<div style="width: 100%; background-color:#000000; height: 70px; text-align: center; font-size: 16px;
display: flex; align-items: center; justify-content: center;">
<p style="margin: 0; color: #ffffff;"><?php echo $footerContent; ?></p>
</div>
<!-- Script for Mobile Menu -->
<script>
function toggleMenu() {
const menu = document.getElementById('mobileLinks');
menu.style.display = menu.style.display === 'block' ? 'none' : 'block';
}
</script>
</body>
</html>