jilo-web/public_html/templates/page-footer.php

22 lines
525 B
PHP
Raw Normal View History

2024-08-02 13:07:50 +00:00
<!-- /Main content -->
2024-08-02 13:07:50 +00:00
</div>
<!-- Footer -->
2024-07-24 14:08:13 +00:00
<div id="footer">Jilo Web <?= $config['version'] ?> &copy;2024 - web interface for <a href="https://lindeas.com/jilo">Jilo</a></div>
2024-08-02 13:07:50 +00:00
<!-- /Footer -->
2024-07-01 09:45:07 +00:00
2024-07-24 14:08:13 +00:00
</div>
2024-08-04 13:33:41 +00:00
<script>
2024-08-05 14:02:35 +00:00
// slide the sidebar to the left instead of default up
2024-08-04 13:33:41 +00:00
document.getElementById('toggleSidebarButton').addEventListener('click', function () {
document.getElementById('sidebar').classList.toggle('collapsed');
});
2024-08-05 14:02:35 +00:00
2024-08-04 13:33:41 +00:00
</script>
</body>
</html>