-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashfooter.php
115 lines (107 loc) · 4.29 KB
/
dashfooter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
?>
<a id="back-to-top" href="#" class="btn btn-primary back-to-top" role="button" aria-label="Scroll to top">
<i class="fas fa-chevron-up"></i>
</a>
<!-- Main Footer -->
<footer class="main-footer">
<!-- To the right -->
<!-- server time here -->
<div class="float-right d-none d-sm-inline">
Server time:
</div>
<!-- /. -->
<!-- Default to the left -->
<strong>Copyright © 2014-2022 <a href="./index.php">Erect One</a>.</strong> All rights reserved.
</footer>
</div>
<!-- ./wrapper -->
<!-- ==================== ALL scripts ================== -->
<!-- REQUIRED SCRIPTS -->
<!-- jquery cdn -->
<script src="https://cdnout.com/jquery/"></script>
<!-- Tempusdominus Bootstrap 4 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tempusdominus-bootstrap-4/5.0.1/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Bootstrap 4 -->
<script src="./plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- overlayScrollbars -->
<script src="./plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"></script>
<!-- Alternatnative*** https://ionic.io/ionicons for icons -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!-- /. -->
<!-- Bootstrap color picker -->
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap-colorpicker.js"></script>
<!-- /. -->
<!-- AdminLTE App -->
<script src="./dist/js/adminlte.js"></script>
<!-- ------------ -->
<!-- =========== my other scripts ========= -->
<!-- For Charts -->
<script src="./plugins/chart.js/Chart.min.js"></script>
<!-- AdminLTE App -->
<script src="./js/adminlte.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/adminlte.min.js"></script> -->
<!-- ------------------ -->
<!-- for stepper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bs-stepper.min.js"></script>
<!-- ---- For inputs ----- -->
<script src="./plugins/moment/moment.min.js"></script>
<script src="./plugins/inputmask/jquery.inputmask.min.js"></script>
<!------- /. ----->
<!-- Select2 -->
<script src="./plugins/select2/js/select2.full.min.js"></script>
<!-- InputMask -->
<script src="./plugins/moment/moment.min.js"></script>
<script src="./plugins/inputmask/jquery.inputmask.min.js"></script>
<!-- date-range-picker -->
<script src="./plugins/daterangepicker/daterangepicker.js"></script>
<!-- bootstrap color picker -->
<script src="./plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.min.js"></script>
<!-- Tempusdominus Bootstrap 4 -->
<script src="./plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Bootstrap Switch -->
<script src="./plugins/bootstrap-switch/js/bootstrap-switch.min.js"></script>
<!-- dropzonejs -->
<script src="./plugins/dropzone/min/dropzone.min.js"></script>
<!-- AdminLTE App -->
<script src="./dist/js/adminlte.min.js"></script>
<!-- AdminLTE for demo purposes -->
<!-- <script src="./dist/js/demo.js"></script> -->
<!-- ==================== -->
<!-- bs-custom-file-input -->
<script src="./plugins/bs-custom-file-input/bs-custom-file-input.min.js"></script>
<!-- Bootstrap4 Duallistbox -->
<script src="https://cdnout.com/bootstrap4-duallistbox"></script>
<!-- /. -->
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
<!-- <script src="./dist/js/pages/dashboard3.js"></script> -->
<script>
$(document).ready(function() {
$('.js-example-basic-multiple').select2();
});
</script>
<!-- for cb custom input -->
<script>
$(function() {
bsCustomFileInput.init();
});
</script>
<!-- jQuery UI 1.11.4 -->
<script src="./plugins/jquery-ui/jquery-ui.min.js"></script>
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
<script>
$.widget.bridge('uibutton', $.ui.button)
</script>
<!------- /. ----->
<!-- /. -->
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
<script src="./dist/js/pages/dashboard3.js"></script>
<script>
$(document).ready(function() {
$('.js-example-basic-multiple').select2();
});
</script>
<!-- ========= End of my other scripts ======= -->
</body>
</html>