add markdown
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..5b52f2e
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,56 @@
+<!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">
+ <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
+ <meta name="description" content="">
+ <meta name="author" content="">
+ <link rel="icon" href="{{ site.url }}favicon.ico">
+
+ <title>{{ page.title }}</title>
+
+ <!-- Bootstrap core CSS -->
+ <link href="{{ site.url }}css/bootstrap.min.css" rel="stylesheet">
+ <!-- Bootstrap theme -->
+
+ <!-- Custom styles for this template -->
+ <link href="{{ site.url }}css/theme.css" rel="stylesheet">
+
+ <!-- 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]-->
+ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
+ </head>
+
+ <div class="container theme-showcase" role="main">
+ {% include nav_header.html %}
+
+ {{ content }}
+
+ <hr />
+
+ <footer>
+ <div class="row">
+ <div class="col-md-6 col-md-offset-3 text-center">
+ <p>© Copyright 2015 The Apache Software foundation. All Rights Reserved. </p>
+ <p>Apache AsterixDB, Apache, and the Apache feather logo are trademarks of the Apache Software Foundation</p>
+ </div>
+ <div class="col-md-1 text-right">
+ <img src="{{ site.url }}img/egg-logo.png" style="height:auto; width:200px; vertical-align:bottom;"/>
+ </div>
+ </div>
+ </footer>
+ </div> <!-- /container -->
+
+
+ <!-- Bootstrap core JavaScript
+ ================================================== -->
+ <!-- Placed at the end of the document so the pages load faster -->
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
+ <script src="{{ site.url }}js/bootstrap.min.js"></script>
+ </body>
+</html>
diff --git a/_layouts/plain.html b/_layouts/plain.html
new file mode 100644
index 0000000..0cc0264
--- /dev/null
+++ b/_layouts/plain.html
@@ -0,0 +1,9 @@
+---
+layout: default
+---
+<div class="row">
+<div class="col-md-8 col-centered">
+<h2>{{ page.title }}</h2>
+{{content}}
+</div>
+</div>
diff --git a/_layouts/wide.html b/_layouts/wide.html
new file mode 100644
index 0000000..59769f7
--- /dev/null
+++ b/_layouts/wide.html
@@ -0,0 +1,9 @@
+---
+layout: default
+---
+<div class="row">
+<div class="col-md-10 col-centered">
+<h2>{{ page.title }}</h2>
+{{content}}
+</div>
+</div>