|
|
| (3 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| $(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);
| |
| });
| |