-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·54 lines (52 loc) · 1.45 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
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="notie no-js"> <!--<![endif]-->
<head>
<?php include 'title.html'; ?>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="modernizr.js"></script>
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
</head>
<body>
<!-- Defining Header -->
<header>
<?php include 'header.html'; ?>
</header>
<!-- Defining Navigation -->
<nav>
<?php include 'menu.html'; ?>
</nav>
<div id="content">
<div id="mcontent">
<!-- Defining Header for content section -->
<header>
<h2>Welcome to HTML5 Example Pages</h2>
</header>
<!-- Defining Content Section -->
<section>
<!-- Defining content section article -->
<article class="bpage">
<div>
<p>Column 1</p>
<p>Column 2</p>
</div>
<div class="image">
</div>
</article>
</section></div>
<!-- Defining Sidebar / Aside -->
<aside>
<section>
<?php include 'sidebar.html'; ?>
</section>
</aside>
</div>
<!-- Defining Footer -->
<footer>
<?php include 'footer.html'; ?>
</footer>
</body>
</html>