Files
this-is-responsive/patterns/_template.html
Brad Frost f61e6efcaa Adding Nav Patterns
Adding some nav patterns
2012-06-08 18:20:16 -04:00

61 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" media="all" href="../styles.css">
<title>Responsive Pattern | This Is Responsive</title>
<script type="text/javascript" src="../js/modernizr.js"></script>
</head>
<body>
<!--Pattern CSS-->
<style id="s" type="text/css">
</style>
<!--Pattern HTML-->
<section id="pattern" class="pattern">
<!--Begin Pattern HTML-->
<!--End Pattern HTML-->
</section>
<!--Pattern JS (if needed)-->
<!--<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
});
</script>-->
<div class="container">
<section class="pattern-description">
<h1>Pattern Name</h1>
<p>This is a quick definition and overview of the pattern.</p>
<h2>Pros</h2>
<ul>
<li>A list of the pros of using this technique</li>
<li>Note that not all patterns need pros and cons</li>
</ul>
<h2>Cons</h2>
<ul>
<li>A list of the cons of using this technique</li>
<li>Again, not all patterns need pros and cons</li>
</ul>
<h2>Considerations</h2>
<ul>
<li>A list of things to consider when using this module</li>
<li>Include relevant resources </li>
</ul>
</section>
<footer role="contentinfo">
<div>
<nav id="menu">
<a href="../patterns.html">&larr;More Responsive Patterns</a>
</nav>
</div>
</footer>
</div>
</body>
</html>