INIT: Aplikacja invoice magico

This commit is contained in:
2026-02-18 22:46:15 +01:00
parent 3da90baf4a
commit c9845b2df9
5 changed files with 1402 additions and 0 deletions

61
footer.php Normal file
View File

@@ -0,0 +1,61 @@
<!-- Footer -->
<footer class="content-footer footer bg-footer-theme">
<div class="container-xxl d-flex flex-wrap justify-content-between py-2 flex-md-row flex-column">
<div class="mb-2 mb-md-0">
©
<script>
document.write(new Date().getFullYear());
</script>
, made with ❤️ by
<a href="https://themeselection.com" target="_blank" class="footer-link fw-medium">ThemeSelection</a>
</div>
<div class="d-none d-lg-inline-block">
<a href="https://demos.themeselection.com/sneat-bootstrap-html-admin-template/documentation/"
target="_blank" class="footer-link me-4">Documentation</a>
</div>
</div>
</footer>
<!-- / Footer -->
<div class="content-backdrop fade"></div>
</div>
<!-- Content wrapper -->
</div>
<!-- / Layout page -->
</div>
<!-- Overlay -->
<div class="layout-overlay layout-menu-toggle"></div>
<!-- Drag Target Area To SlideIn Menu On Small Screens -->
<div class="drag-target"></div>
</div>
<!-- / Layout wrapper -->
<!-- Core JS -->
<!-- build:js assets/vendor/js/core.js -->
<script src="<?= $basePath ?>/assets/vendor/libs/jquery/jquery.js"></script>
<script src="<?= $basePath ?>/assets/vendor/libs/popper/popper.js"></script>
<script src="<?= $basePath ?>/assets/vendor/js/bootstrap.js"></script>
<script src="<?= $basePath ?>/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.js"></script>
<script src="<?= $basePath ?>/assets/vendor/libs/hammer/hammer.js"></script>
<script src="<?= $basePath ?>/assets/vendor/js/menu.js"></script>
<!-- endbuild -->
<!-- Vendors JS -->
<!-- Main JS -->
<script src="<?= $basePath ?>/assets/js/main.js"></script>
<script>
// Przekazujemy ścieżkę z PHP do globalnej zmiennej JS
// Używamy json_encode dla bezpieczeństwa typów
const MAGICO_BASE_URL = <?= json_encode($basePath); ?>;
</script>
<?php if (!empty($enablePrototypeComments) && $enablePrototypeComments): ?>
<script src="<?= $basePath ?>/assets/js/comments.js"></script>
<?php endif; ?>