Skip to content

Instantly share code, notes, and snippets.

@cjdsie
Created September 13, 2012 23:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjdsie/3718714 to your computer and use it in GitHub Desktop.
Save cjdsie/3718714 to your computer and use it in GitHub Desktop.
Wirefy HTML Template
<!DOCTYPE html>
<!-- HTML5 Mobile Boilerplate -->
<!--[if IEMobile 7]><html class="no-js iem7"><![endif]-->
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<!-- HTML5 Boilerplate -->
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Wirefy | The Responsive Wireframe Boilerplate</title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<div class="container clearfix">
<header role="banner" class="clearfix">
<div class="logo">
<h1>Wirefy</h1>
</div>
<div class='menu-button'></div>
<a href="#main" class="skip">Skip navigation</a>
<nav role="navigation" id="nav">
<ul>
<li class="top-level"><a href="#">Sample 1</a></li>
<li class="top-level"><a href="#">Sample 2</a></li>
<li class="top-level"><a href="#">Sample 3</a></li>
<li class="top-level"><a href="#">Sample 4</a></li>
<li class="top-level"><a href="#">Sample 5</a></li>
</ul>
</nav>
</header>
<div role="main" class="content clearfix">
<hr class="large">
<section class="row">
</section>
<footer role="contentinfo" class="clearfix">
</footer>
</div><!-- content -->
</div><!-- container -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment