-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
99 lines (83 loc) · 2.79 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
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
<?php
require "config/config.php";
include "inc/functions.php";
session_start();
?>
<!-- The new doctype of HTML5 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Sistem Informasi Prakerin | SMK Muhammadiyah Pekalongan</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta charset="utf-8">
<link rel="shortcut icon" href="images/fav.png" />
<link rel="icon" href="images/fav.png" />
<!-- Linking styles -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/jquery.lightbox-0.5.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/navigation.css" type="text/css" />
<link rel="stylesheet" href="SpryAssets/SpryValidationTextField.css" type="text/css" />
<link rel="stylesheet" href="SpryAssets/SpryValidationSelect.css" type="text/css" />
<link rel="stylesheet" href="SpryAssets/SpryValidationPassword.css" type="text/css" />
<link rel="stylesheet" href="SpryAssets/SpryValidationConfirm.css" type="text/css" />
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5.js"></script>
<![endif]-->
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="js/jquery.lightbox-0.5.min.js" type="text/javascript"></script>
<script src="js/nicEdit.js" type="text/javascript"></script>
<script src="js/tooltips.js" type="text/javascript"></script>
<!-- another js -->
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationPassword.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationConfirm.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('#gallery a').lightBox();
});
</script>
</head>
<body>
<!-- Defining the header section of the page -->
<div align="center">
<?php
include "inc/header.php";
?>
</div>
<div align="center">
<div align="center" id="nav">
<?php
include "inc/nav_menu.php";
?>
</div>
</div>
<!-- Defining the main content section -->
<div align="center">
<section id="main">
<div id="content">
<!-- content post block -->
<div id="content-wrapper">
<?php
include "inc/content.php";
?>
<!-- sidebar block -->
<div id="sidebar-main">
<?php
include "inc/sidebar.php";
?>
</div>
</div>
</div>
</section>
</div>
<!-- Defining the footer section of the page -->
<div align="center">
<?php
include "inc/footer.php";
?>
</div>
</body>
</html>