25327e3302
[events.php](/Users/tyemeclifford/Documents/GH/MyKeyser/events.php) and [admin/events.php](/Users/tyemeclifford/Documents/GH/MyKeyser/admin/events.php): event image uploads. [menu.php](/Users/tyemeclifford/Documents/GH/MyKeyser/menu.php), [admin/menus.php](/Users/tyemeclifford/Documents/GH/MyKeyser/admin/menus.php), and [business.php](/Users/tyemeclifford/Documents/GH/MyKeyser/business.php): one configurable menu item image slot. [account.php](/Users/tyemeclifford/Documents/GH/MyKeyser/account.php): circular avatar upload and crop controls. [forum.php](/Users/tyemeclifford/Documents/GH/MyKeyser/forum.php), [admin/forum.php](/Users/tyemeclifford/Documents/GH/MyKeyser/admin/forum.php), [.htaccess](/Users/tyemeclifford/Documents/GH/MyKeyser/.htaccess), and [forum/index.php](/Users/tyemeclifford/Documents/GH/MyKeyser/forum/index.php): forum, categories, topic/reply uploads, permalinks, toggle/moderation. [includes/db.php](/Users/tyemeclifford/Documents/GH/MyKeyser/includes/db.php) and [includes/functions.php](/Users/tyemeclifford/Documents/GH/MyKeyser/includes/functions.php): schema upgrades and shared upload/image helpers. [assets/css/style.css](/Users/tyemeclifford/Documents/GH/MyKeyser/assets/css/style.css): neon styling for forum, images, avatars, attachments.
53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
</main>
|
||
|
||
<footer class="footer">
|
||
<div class="footer-grid">
|
||
<div>
|
||
<div class="f-logo">⛰ KEYSER, WV</div>
|
||
<div class="f-tag">"<?=e(setting('site_tagline','The Friendliest City in the U.S.A.'))?>"</div>
|
||
<p>County seat of Mineral County, WV. Where New Creek meets the North Branch Potomac River. Elevation 809 ft. Population ~4,800. Founded 1874. Part of the Appalachian Forest National Heritage Area.</p>
|
||
</div>
|
||
<div>
|
||
<h5>Explore</h5>
|
||
<ul>
|
||
<li><a href="/directory.php">Business Directory</a></li>
|
||
<li><a href="/attractions.php">Attractions</a></li>
|
||
<li><a href="/events.php">Events Calendar</a></li>
|
||
<li><a href="/about.php">About Keyser</a></li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h5>Community</h5>
|
||
<ul>
|
||
<?php if (setting('registration_enabled','1')==='1'): ?>
|
||
<li><a href="/register.php">Create Account</a></li>
|
||
<?php endif; ?>
|
||
<?php if ((authed() && setting('forum_enabled','1')==='1') || isAdmin()): ?>
|
||
<li><a href="/forum">Community Forum</a></li>
|
||
<?php endif; ?>
|
||
<li><a href="/events.php?submit=1">Submit an Event</a></li>
|
||
<li><a href="https://govisitmineralwv.com" target="_blank" rel="noopener">Mineral County Tourism ↗</a></li>
|
||
<li><a href="https://cityofkeyser.com" target="_blank" rel="noopener">City of Keyser ↗</a></li>
|
||
<li><a href="https://mineralwv.gov" target="_blank" rel="noopener">Mineral County Gov ↗</a></li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h5>Tourism Office</h5>
|
||
<address>
|
||
<p>📍 167 S. Mineral Street<br>Keyser, WV 26726</p>
|
||
<p>📞 <a href="tel:304-790-7081">304-790-7081</a></p>
|
||
<p>✉️ <a href="mailto:mineralcocvb@gmail.com">mineralcocvb@gmail.com</a></p>
|
||
<p>⏰ Mon–Fri 9am–4pm</p>
|
||
</address>
|
||
</div>
|
||
</div>
|
||
<div class="footer-bar">
|
||
<p>© <?=date('Y')?> My Keyser, Discover Keyser, West Virginia — Almost Heaven • Mountain State</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="/assets/js/app.js"></script>
|
||
<?=$footExtra??''?>
|
||
</body>
|
||
</html>
|