-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
62 lines (51 loc) · 1.56 KB
/
index.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
<!doctype html>
<html lang="kr">
<?php
// echo $SERVER['PHP_SELF'];
include("./head.php");
?>
<body class="sb-nav-fixed" id="page-top">
<!-- topNavbar, modal Start -->
<?php include("./topNavbar.php"); ?>
<?php include("./modal.php"); ?>
<!-- topNavbar, modal End -->
<div id="wrapper">
<!-- Menu Start -->
<div id="layoutSidenav">
<div id="layoutSidenav_nav">
<?php include("./menu.php"); ?>
</div>
<!-- Menu End -->
<!-- Content Start -->
<div id="layoutSidenav_content">
<!-- InContent Start -->
<main>
<div id="container-fluid" class="container-fluid" style="padding-top:24px;"></div>
</main>
<!-- InContent End -->
<!-- Tail Start -->
<?php include("./tail.php"); ?>
<!-- Tail End -->
</div>
</div>
<!-- Content End -->
</div>
<!-- /#wrapper -->
<!-- Scroll to Top Button Start-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Scroll to Top Button End-->
</body>
<script>
$(document).ready(function() {
$("#container-fluid").load("./page/404.php");
});
function setVisible(selector, visible) {
document.querySelector(selector).style.display = visible ? 'block' : 'none';
}
document.addEventListener('DOMContentLoaded', function() {
setVisible('#loading', false);
}, false);
</script>
</html>