Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
$(document).ready(function() {
$('#p-lang').hide();
$('.minerva-footer-logo').hide();
$('#footer-info').hide();
$('#footer-places').hide();
var customFooter = `
<div class="custom-footer-content">
<div class="footer-inner">
<div id="footer-company">
<a href="/">
<img id="footer-logo" src="/resources/assets/Site-logo.png" alt="Telos Realms Logo">
</a>
<span class="footer-copyright">Telos Realms © 2025</span>
</div>
<ul id="footer-links">
<li><a href="/wiki/Main_Page">Home</a></li>
<li><a href="/wiki/About">About</a></li>
<li><a href="/wiki/Terms">Terms of Service</a></li>
<li><a href="/wiki/Privacy">Privacy Policy</a></li>
</ul>
</div>
</div>
`;
$('.post-content.footer-content').append(customFooter);
});