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 / html5.html
100644 35 lines (34 sloc) 1.146 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>[Name of Site]</title>
<meta name="description" content="[ADD A DESCRIPTION OF THIS WEBSITE]">
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/base.css" media="screen">
<link rel="stylesheet" href="/css/html5.css" media="all">
<link rel="alternate" type="application/atom+xml" title="[Name of Site Feed]" href="/feed/">
<!--[if lte IE 7]><link rel="stylesheet" href="/css/ie/all.css" type="text/css" media="screen"><![endif]-->
<!--[if lte IE 6]>
<script src="/css/ie/html5.js"></script>
<link rel="stylesheet" href="/css/ie/6.css" type="text/css" media="screen">
<![endif]-->
<script src="http://www.google.com/jsapi"></script>
<script>google.load("jquery", "1.3.2");</script>
<script src="/js/load.js"></script>
</head>
<body>
<header>
<h1>Title of Page</h1>
</header>
<section id="main" class="copy">
<article>
<aside>
</aside>
</article>
</section><!-- #main -->
<footer>
<div id="copyright">Copyright &#169; [2009] [AUTHOR'S NAME]. All Rights Reserved.</div>
</footer>
</body>
</html>