Skip to content

Commit

Permalink
Added index.html example webpage.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrushton committed Oct 22, 2015
1 parent 5eb2109 commit 7db28c9
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions data/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="description" content="">
<meta name="author" content="">

<title>Coderdojo</title>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>

<body>
<div class="container">

<div class="page-header">
<h1>Coderdojo Delorean Time Machine</h1>
<p class="lead"></p>
</div>

<div class="row">

<div class="col-md-6">

<div class="thumbnail">
<img src="past.png" class="img-responsive" />
<div class="caption">
<h3>Past</h3>
</div>
</div>

</div>

<div class="col-md-6">

<div class="thumbnail">
<img src="present.png" class="img-responsive" />
<div class="caption">
<h3>Present</h3>
</div>
</div>

</div>

</div>


</div> <!-- /container -->


<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>

0 comments on commit 7db28c9

Please sign in to comment.