-
-
Save selvinortiz/5496464 to your computer and use it in GitHub Desktop.
HTML:Boilerplate
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> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
@if(empty($title)) | |
<title>Company</title> | |
@else | |
<title>{{ $title }} | Company</title> | |
@endif | |
<link rel="stylesheet" type="text/css" href="/css/reusify.css"> | |
<!--[if IE]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<body> | |
<!-- @header --> | |
<div class="row header"> | |
<div class="x4"> | |
<h1 class="ir">Heading</h1> | |
</div> | |
<div class="x8"> | |
<nav class="nav"> | |
<ul> | |
<li><a href="#">Link</a><li> | |
<li><a href="#">Link</a><li> | |
<li><a href="#">Link</a><li> | |
<li><a href="#">Link</a><li> | |
</ul> | |
</nav> | |
</div> | |
</div> | |
<!-- /header @content --> | |
@yield('content') | |
<!-- /content @footer --> | |
<div class="row"> | |
<div class="x12"> | |
<p>© 2013 Company, Inc.</p> | |
</div> | |
</div> | |
<script type="text/javascript" src="/js/ender.min.js"></script> | |
<script type="text/javascript" src="/js/reusify.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment