Skip to content

Instantly share code, notes, and snippets.

@cjbarber
Last active December 11, 2015 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjbarber/4669688 to your computer and use it in GitHub Desktop.
Save cjbarber/4669688 to your computer and use it in GitHub Desktop.
SmartGuides
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SmartGuides: Learn faster.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Merriweather' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400' rel='stylesheet' type='text/css'>
<!-- Le styles -->
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
background-image: url(http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/ecailles.png);
}
h1, h2, h3, h4 {
font-family: 'Merriweather', Georgia, Times, serif;
}
.sidebar-nav {
padding: 9px 0;
}
/* http://stackoverflow.com/questions/9350818/fixed-sidebar-navigation-in-fluid-twitter-bootstrap-2-0 */
.sidebar-nav-fixed {
position:fixed;
top:120px;
width:21.97%;
}
@media (max-width: 767px) {
.sidebar-nav-fixed {
position:static;
width:auto;
}
}
@media (max-width: 979px) {
.sidebar-nav-fixed {
top:70px;
}
}
ul.nobullets {
list-style-type: none;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
</style>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="../assets/ico/favicon.png">
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h3 class="muted">SmartGuides</h3>
</div>
<hr>
<div class="jumbotron">
<h1>How to: learn faster.</h1>
<p class="lead">A hand curated collection of pre-loaded <em>smart</em> how-to lists.</p>
<a class="btn btn-large btn-success" href="#">Begin Learning &raquo;</a>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<div class="well sidebar-nav sidebar-nav-fixed">
<ul class="nav nav-list">
<li class="nav-header">Contents</li>
<li class="active"><a href="#step1">Visit SmartGuides</a></li>
<li><a href="#step2">Learn something!</a></li>
<li class="nav-header">SmartGuides</li>
<li><a href="#">Learn Python</a></li>
<li><a href="#">Learn Ruby</a></li>
<li><a href="#">Learn Javascript</a></li>
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span9">
<div class="hero-unit">
<h2>About: learning faster.</h2>
<p>When you haven't yet done something, it's hard to know what the best resources are on the subject.</p>
<p>We provide guides created by people who <em>actually know things.</em></p>
</div>
<div class="row-fluid">
<div class="span12">
<table class="table table-striped table-hover table-bordered">
<thead>
<tr>
<th>
<h2>Tasks</h2>
</th>
</tr>
</thead>
<tbody>
<tr class="success">
<td>
<label class="checkbox">
<input type="checkbox" checked="checked">
<h4 id="step1">Visit SmartGuides.</h4>
<p>Nice job!</p>
</input>
</label>
</td>
</tr>
<tr>
<td>
<label class="checkbox">
<input type="checkbox">
<h4 id="step2">Learn something!</h4>
<p>Check out one of our pages:</p>
<ul class="nobullets">
<li>
<p><a class="btn btn-info" href="#">Learn Python</a></p>
</li>
<li>
<p><a class="btn btn-info" href="#">Learn Ruby</a></p>
</li>
<li>
<p><a class="btn btn-info" href="#">Learn Javascript</a></p>
</li>
</ul>
</input>
</label>
</td>
</tr>
<tr>
<td>
<label class="checkbox">
<input type="checkbox">
<h4 id="step2">Share Knowledge</h4>
<p>Share SmartGuide with someone who loves learning.</p>
</input>
</label>
</td>
</tr>
</tbody>
</table>
</div><!--/span-->
</div><!--/row-->
</div><!--/span-->
</div><!--/row-->
<hr>
<footer>
<p>&copy; Chris Barber 2013</p>
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment