Created
October 1, 2012 06:40
-
-
Save snowman-repos/3809878 to your computer and use it in GitHub Desktop.
HTML: Starter Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<!-- | |
********************************************* | |
This website was designed & created by | |
%NAME% | |
%DATE% | |
%VERSION% | |
********************************************* | |
//--> | |
<head> | |
<title>%TITLE%</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="description" content="%DESCRIPTION%"> | |
<meta name="keywords" content="%KEYWORDS%"> | |
<meta name="author" content="%NAME"> | |
<meta name="copyright" content="%NAME"> | |
<meta name="distribution" content="Global"> | |
<meta name="rating" content="General"> | |
<meta name="robots" content="INDEX,FOLLOW"> | |
<meta name="revisit-after" content="1 Month"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<link rel="stylesheet" href="css/style.css"> | |
<!--[if lt IE 9]><script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> | |
<!--just to be safe...--> | |
<!--[if lt IE 11]><link rel="stylesheet" href="css/ie-style.css"><![endif]--> | |
</head> | |
<body> | |
<header> | |
</header> | |
<div class="content-wrapper"> | |
</div> | |
<footer> | |
</footer> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script> | |
<script src="js/script.js"></script> | |
<script> | |
var _gaq=[['_setAccount','UA-XXXXXXX-X'],['_trackPageview']]; | |
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1; | |
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js'; | |
s.parentNode.insertBefore(g,s)}(document,'script')); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment