Created
December 20, 2012 18:56
-
-
Save whatnickcodes/4347708 to your computer and use it in GitHub Desktop.
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 IE 6]> <html class="ie6 ie"> <![endif]--> | |
<!--[if IE 7]> <html class="ie7 ie"> <![endif]--> | |
<!--[if IE 8]> <html class="ie8 ie"> <![endif]--> | |
<!--[if gte IE 9]> <!--><html> <!--<![endif]--> | |
<head> | |
<!-- robot speak --> | |
<meta charset="utf-8"> | |
<title>Example Page</title> | |
<meta name="author" content="Scotch.io"><!-- static --> | |
<meta name="keywords" content="Stencil, Codeigniter, Template, Awesome!"> | |
<meta name="description" content="This is the meta description!"><!-- Produced Dynamically from Controller --> | |
<!-- crayons and paint --> | |
<link rel="stylesheet" href"http://scotch.io/assets/css/reset.css"> | |
<link rel="stylesheet" href"http://scotch.io/assets/css/style.css"><!-- static, uses html5_helper --> | |
<link rel="stylesheet" href"http://scotch.io/assets/css/custom1.css"> | |
<link rel="stylesheet" href"http://scotch.io/assets/css/custom2.css"><!-- Produced Dynamically from Controller --> | |
<!-- magical wizardry --> | |
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--><!-- html5 shiv using html5_helper --> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
<script src="http://scotch.io/assets/js/scripts.js"></script><!--- static, uses html5_helper --> | |
<script src="http://scotch.io/assets/js/slider.js"></script> | |
<script src="http://scotch.io/assets/js/lightbox.js"></script><!-- Produced Dynamically from Controller --> | |
</head> | |
<body> | |
<div id="container" class="container-fluid"> | |
<header> | |
<!-- Header Slice --> | |
This is my header! | |
</header> | |
<section id="content"> | |
<!-- Contains the page/content of one_view --> | |
<h1>This is my content!</h1> | |
<p>Cupcake ipsum dolor sit amet chocolate biscuit. Croissant wafer bonbon ice cream. Bonbon I love lollipop marzipan bonbon.</p> | |
<p>Cupcake applicake cookie. Cake oat cake cotton candy chupa chups marshmallow. Faworki pie danish apple pie. Marshmallow pudding I love jelly-o soufflé sesame snaps cupcake sesame snaps wafer.</p> | |
</section> | |
<footer> | |
<!-- Footer Slice --> | |
This is my footer! | |
</footer> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment