public
Description: Starting point for markup, CSS, JavaScript, and folder structure.
Homepage:
Clone URL: git://github.com/trey/site-template.git
Click here to lend your support to: site-template and make a donation at www.pledgie.com !
site-template / xhtml_full.html
100644 42 lines (41 sloc) 1.896 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[Name of Site]</title>
<meta name="revisit-after" content="1 day" />
<meta name="rating" content="General" />
<meta name="author" content="Name of Author" />
<meta name="language" content="en-us" />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="robots" content="noodp" />
<meta name="description" content="[ADD A DESCRIPTION OF THIS WEBSITE]" />
<meta name="copyright" content="Copyright (c) 2008 Name of Company/Person" />
<link rel="icon" href="/img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="/css/base.css" type="text/css" media="screen" />
<!--[if lte IE 7]><link rel="stylesheet" href="/css/ie/all.css" type="text/css" media="screen" /><![endif]-->
<!--[if lte IE 6]><link rel="stylesheet" href="/css/ie/6.css" type="text/css" media="screen" /><![endif]-->
<!--[if lte IE 5]><link rel="stylesheet" href="/css/ie/5win.css" type="text/css" media="screen" /><![endif]-->
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">google.load("jquery", "1.3.2");</script>
<script src="/js/load.js" type="text/javascript"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
</div><!-- #header -->
<div id="main">
<div id="primary" class="copy">
<h1>Title of Page</h1>
</div><!-- #primary -->
<div id="secondary">
</div><!-- #secondary -->
</div><!-- #main -->
<div id="footer">
<div id="copyright">Copyright &#169; [2009] [AUTHOR'S NAME]. All Rights Reserved.</div>
</div><!-- #footer -->
</div><!-- #wrapper -->
</body>
</html>