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

46 lines
1.1 KiB
PHP
Raw Normal View History

2024-08-07 08:13:55 +00:00
<?php if ($page !== 'login' && $page !== 'register') { ?>
2024-08-02 13:07:50 +00:00
<!-- /Main content -->
2024-08-07 08:13:55 +00:00
</div>
2024-08-02 13:07:50 +00:00
</div>
2024-08-07 08:13:55 +00:00
<?php } ?>
2024-08-02 13:07:50 +00:00
<!-- Footer -->
2024-10-04 11:18:28 +00:00
<div id="footer">Jilo Web <?= htmlspecialchars($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-05 16:53:24 +00:00
<script src="static/sidebar.js"></script>
2024-08-07 09:03:54 +00:00
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<script>
// dismissible messages
document.addEventListener('DOMContentLoaded', function() {
// Initialize Bootstrap alerts
var alerts = document.querySelectorAll('.alert');
alerts.forEach(function(alert) {
var closeButton = alert.querySelector('.btn-close');
if (closeButton) {
closeButton.addEventListener('click', function() {
alert.classList.remove('show');
setTimeout(function() {
alert.remove();
}, 150);
});
}
});
});
</script>
</body>
</html>