-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtouch.php
More file actions
114 lines (56 loc) · 2.31 KB
/
touch.php
File metadata and controls
114 lines (56 loc) · 2.31 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
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
<!DOCTYPE html><!-- PAGE --><!-- HTML5 Declaration / -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!-- HTML5 Element --> <!--<![endif]-->
<!-- HTML5 does not require you to wrap your attributes in quotes, and you do not have to close your elements. I, however, prefer the XHTML Structured Semantic approach, even though it can seem redundant. -->
<!--
Jesse Gangi
jessegangi.com
218 310 2447
jgangi @ aerialapps.com
@Ganginator
-->
<head>
<?php
include("includes/head.php")
?>
</head>
<body><!-- CODE --><!-- I do not indent the body, and I do not use it as a wrapper. -->
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<!-- I do not indent any wrappers. In this case: #wrapper, #outer, and #inner. Technically #wrapper is unecessary. CONDSIDER REMOVING #wrapper -->
<!-- DISABLED WRAPPERS -->
<!-- <div id="wrapper" class="100center"> -->
<!-- <div id="outer" class="100center"> -->
<!-- <div id="viewport"> --><!-- NEED TO FIGURE OUT VIEWPORTS! -->
<!-- <h3><mark> Viewport </mark></h3> --><!-- HTML5 Element -->
<!-- </div> --><!-- / #viewport -->
<!-- <div id="inner" class="100center"> -->
<header><!-- HTML5 Tag -->
<?php
include("includes/header.php")
?>
</header><!-- / HTML5 Tag -->
<?php
include("includes/layout.php")
?>
<footer><!-- HTML5 Tag -->
<?php
include("includes/footer.php")
?>
</footer><!-- / HTML5 Tag -->
<!-- DISABLED WRAPPERS -->
<!-- </div> --><!-- / #inner .100center -->
<!-- </div> --><!-- / #outer .100center -->
<!-- </div> --><!-- / #wrapper .100center -->
<div id="feet"><!-- MINE -->
<?php
include("includes/feet.php")
?>
</div><!-- / MY #feet -->
</body><!-- / CODE -->
</html><!-- / PAGE -->