Files
MyKeyser/includes/footer.php
T
Ty Clifford ed932a6cd6 - Reviews and forum posts/replies now use a modern comment layout: avatar + username/meta on the left, content/actions on the right.
Added sanitized Markdown rendering for reviews, forum topics, and 
replies.
Added a local Markdown editor with toolbar and live visual preview 
for:Review body on 
[business.php](/Users/tyemeclifford/Documents/GH/MyKeyser/business.php)
Forum topic body and reply body on 
[forum.php](/Users/tyemeclifford/Documents/GH/MyKeyser/forum.php)

Added editor/comment styling in 
[assets/css/style.css](/Users/tyemeclifford/Documents/GH/MyKeyser/assets/css/style.css).
Added the editor script at 
[assets/js/markdown-editor.js](/Users/tyemeclifford/Documents/GH/MyKeyser/assets/js/markdown-editor.js), 
included globally through 
[includes/footer.php](/Users/tyemeclifford/Documents/GH/MyKeyser/includes/footer.php).
2026-06-19 11:07:43 -04:00

54 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
</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>⏰ MonFri 9am4pm</p>
</address>
</div>
</div>
<div class="footer-bar">
<p>&copy; <?=date('Y')?> My Keyser, Discover Keyser, West Virginia — Almost Heaven &bull; Mountain State</p>
</div>
</footer>
<script src="/assets/js/app.js"></script>
<script src="/assets/js/markdown-editor.js"></script>
<?=$footExtra??''?>
</body>
</html>