Show sourcecode
The following files exists in this folder. Click to view.
footer.php
33 lines ASCII Windows (CRLF)
<p class="meta" style="text-align:center;margin-top:32px;">© Powered by Crumbs</p>
</main>
<script>
function toggleSidebar() {
const sidebar = document.getElementById('sidebar');
const isMobile = window.innerWidth <= 768;
if (isMobile) {
sidebar.classList.toggle('mobile-open');
} else {
sidebar.classList.toggle('collapsed');
localStorage.setItem('sidebar-collapsed', sidebar.classList.contains('collapsed'));
}
}
// Restore sidebar state on load without playing the transition
(function() {
const sidebar = document.getElementById('sidebar');
if (sidebar && window.innerWidth > 768) {
const collapsed = localStorage.getItem('sidebar-collapsed') === 'true';
if (collapsed) {
sidebar.style.transition = 'none';
sidebar.classList.add('collapsed');
sidebar.offsetWidth; // force reflow
sidebar.style.transition = '';
}
}
})();
</script>
</body>
</html>