Skip to content

Commit

Permalink
tweaking homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
odewahn committed Sep 5, 2014
1 parent 06d8020 commit eede265
Show file tree
Hide file tree
Showing 4 changed files with 160 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.DS_Store
*.zip
*.pdf
61 changes: 61 additions & 0 deletions assets/html.css
@@ -0,0 +1,61 @@
.ico {
vertical-align: top;
float: left;
margin-right: 20px;
}


.positioning-statement {
font-size: 1.5em;
line-height: 1.5em;
padding: 10px;

}

.contributing {
background-color: #eee;
border-radius: 10px;
padding: 10px;
width: 70%;
}

/* header
---------------------------------------------------- */
header {
position: relative;
border-bottom: 1px solid #E0E0E0;
padding: 20px;
}

/* Footer
---------------------------------------------------- */
footer {
position: relative;
border-top: 1px solid #E0E0E0;
padding: 20px;
}



/* Author profiles
---------------------------------------------------- */

.author-img {
border-radius: 12px;
margin-bottom: 10px;
width: 120px;
margin-right: 20px;
float: left;
}

blockquote {
color: #918D8D;
font-size: 14px;
line-height: 20px;
}

blockquote cite {
display: block;
text-align: right;
}

Binary file added assets/lucas_carlson.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions index.html
@@ -0,0 +1,96 @@

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" 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"/>

<title>Docker Jumpstart</title>

<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css"/>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script>
<link rel="stylesheet" type="text/css" href="assets/html.css"/>


</head>

<body data-type="book">

<img src="https://s3.amazonaws.com/orm-atlas-media/fork-on-github.png" class="fork-on-github"/>
<header>
<img class="logo" src="http://orm-logo-service.herokuapp.com/velocity/logo.svg"/>
<h1>Docker Jumpstart</h1>
</header>




<div class="container">

<div class="row">
<div class="col-md-6">
<p class="positioning-statement">A quick introduction to Docker.</p>
<div class="row">
<div class="col-md-6">
<a href="ch01.html" class="btn btn-block btn-lg btn-success">
Read online <span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="col-md-6">
<a href="https://s3.amazonaws.com/orm-atlas-media/dds-field-guide.pdf" class="btn btn-block btn-lg btn-success">Download <span class="glyphicon glyphicon-download"></span></a>
</div>
</div>
</div>
<div class="col-md-6 ">
<div class="contributing">
<h3>How to contribute</h3>
<ol>
<li><a href="https://github.com/odewahn/docker-jumpstart">Fork the repo</a>.</li>
<li>Send a pull request.</li>
<li>We'll discuss it.</li>
</ol>
</div>
</div>

</div>
</div>

<div class="row">
<div class="col-md-6 toc">
<h2>Contents</h2>
<ol class="toc-list">
<li>
<span class="fa fa-cloud fa-5x fa-border"></span>
<a href="ch02.html">Introduction.</a>
</li>
</ol>
</div>

<div class="col-md-6 testimonials">
<h2>Testimonials</h2>
<div class="testomonial clearfix">
<img class="author-img" src="assets/lucas_carlson.jpg"/>
<blockquote class="quote">
This is a fantastic Docker guide that helps you learn all the basics to get you up and running with Docker.
<cite class="clearfix source">Lucas Carlson</cite>
</blockquote>
</div>

</div>

</div>

</div>

</div>


</div>

</body>

</html>

0 comments on commit eede265

Please sign in to comment.