-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
67 lines (56 loc) · 1.17 KB
/
index.php
File metadata and controls
67 lines (56 loc) · 1.17 KB
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
<?php
session_start();
include 'includes/common.php';
$page = 'home';
?>
<!DOCTYPE html>
<html lang="en de" class="no-js">
<head>
<?php
include 'includes/head.php';
?>
</head>
<body class="home">
<?php
include 'includes/header.php';
?>
<div class="<?php echo $page; ?>">
<section class="hs1">
<header>
<!-- Each section should begin with a new h1 (not h2), and optionally a header -->
<h1>This is a Page Sub Title</h1>
</header>
<p>
Some content...
</p>
<!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
<h2>Demonstrating EM and STRONG</h2>
<p>
<strong>This text will have more importance (SEO-wise and contextually)</strong>
</p>
<footer>
<p>
Author: <cite>Louis Lazaris</cite>
</p>
</footer>
</section>
<section class="hs2">
<h1>This is another section</h1>
<p>
This is some dummy content
</p>
</section>
</div><!-- .main -->
<aside class="sidebar">
<p>
Sidebar content
</p>
</aside>
<?php
include 'includes/footer.php';
?>
<?php
include 'includes/scripts.php';
?>
</body>
</html>