44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Partielle View für alle JavaScript-Assets.
|
|
*
|
|
* Aufgaben:
|
|
* - Stellt den "Scroll to Top"-Button bereit.
|
|
* - Bindet die JavaScript-Abhängigkeiten des SB-Admin-2-Templates ein
|
|
* (jQuery, Bootstrap, jQuery-Easing).
|
|
* - Lädt optionale Plugins wie Chart.js und DataTables.
|
|
* - Lädt die Demo-Skripte für Charts und Tabellen (js/demo/...).
|
|
*
|
|
* Hinweis:
|
|
* - Diese Datei sollte am Ende des Body-Bereichs über das Layout eingebunden werden,
|
|
* damit die Seite schnell gerendert wird.
|
|
*/
|
|
|
|
?>
|
|
<!-- Scroll to Top Button-->
|
|
<a class="scroll-to-top rounded" href="#page-top">
|
|
<i class="fas fa-angle-up"></i>
|
|
</a>
|
|
|
|
<!-- Bootstrap core JavaScript-->
|
|
<script src="../../vendor/jquery/jquery.min.js"></script>
|
|
<script src="../../vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Core plugin JavaScript-->
|
|
<script src="../../vendor/jquery-easing/jquery.easing.min.js"></script>
|
|
|
|
<!-- Custom scripts for all pages-->
|
|
<script src="../../js/sb-admin-2.min.js"></script>
|
|
|
|
<!-- Page level plugins -->
|
|
<script src="../../vendor/chart.js/Chart.min.js"></script>
|
|
<script src="../../vendor/datatables/jquery.dataTables.min.js"></script>
|
|
<script src="../../vendor/datatables/dataTables.bootstrap4.min.js"></script>
|
|
|
|
<!-- Page level custom scripts -->
|
|
<script src="../../js/demo/datatables-demo.js"></script>
|
|
<script src="../../js/demo/chart-area-demo.js"></script>
|
|
<script src="../../js/demo/chart-pie-demo.js"></script>
|
|
|
|
|