You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@warble.apache.org by hu...@apache.org on 2018/06/11 20:49:49 UTC

[incubator-warble-website] branch asf-site updated: Mockup website, add generator etc as well.

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-warble-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new e075e6f  Mockup website, add generator etc as well.
e075e6f is described below

commit e075e6f46e7e7a91c15d035ef45790f0ec735621
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Jun 11 15:49:37 2018 -0500

    Mockup website, add generator etc as well.
---
 BUILDING.txt                          |  12 +++
 content/css/warble.css                | 142 ++++++++++++++++++++++++++++++++++
 content/docs/asf.html                 |  63 +++++++++++++++
 content/docs/community.html           |  74 ++++++++++++++++++
 content/images/icon-demo.png          | Bin 0 -> 4474 bytes
 content/images/icon-design.png        | Bin 0 -> 5919 bytes
 content/images/icon-documentation.png | Bin 0 -> 2811 bytes
 content/images/icon-download.png      | Bin 0 -> 3061 bytes
 content/images/icon-feather.png       | Bin 0 -> 3450 bytes
 content/images/icon-home.png          | Bin 0 -> 6060 bytes
 content/images/icon-roadmap.png       | Bin 0 -> 8955 bytes
 content/images/incubator-logo.png     | Bin 0 -> 8923 bytes
 content/images/quote-bubble.png       | Bin 0 -> 17760 bytes
 content/images/splash-contact.png     | Bin 0 -> 11857 bytes
 content/images/splash-mission.png     | Bin 0 -> 11672 bytes
 content/images/splash-people.png      | Bin 0 -> 19717 bytes
 content/images/warble-logo.png        | Bin 263905 -> 267056 bytes
 content/index.html                    | 131 +++++++++++++++++++++++++++----
 source/generate.py                    |  48 ++++++++++++
 source/markdown/docs/asf.md           |   8 ++
 source/markdown/docs/community.md     |  24 ++++++
 source/markdown/index.md              |  65 ++++++++++++++++
 source/template.html                  |  57 ++++++++++++++
 23 files changed, 610 insertions(+), 14 deletions(-)

diff --git a/BUILDING.txt b/BUILDING.txt
new file mode 100644
index 0000000..df7b82f
--- /dev/null
+++ b/BUILDING.txt
@@ -0,0 +1,12 @@
+NOTE: This is now handled by the buildbot, you only need to change the markdown
+      files and the buildbot will regenerate the site and publish it.
+      
+# Building the web site
+
+* Install the markdown module for Python 3: sudo pip3 install markdown
+* Edit or create the appropriate markdown file in source/ (you can have sub-dirs there)
+* open a shell, go to the source/ dir
+* Run: python3 generate.py
+* Commit the changes to git :)
+
+
diff --git a/content/css/warble.css b/content/css/warble.css
new file mode 100644
index 0000000..d9edf57
--- /dev/null
+++ b/content/css/warble.css
@@ -0,0 +1,142 @@
+html {
+    min-height: 100%;
+    background: linear-gradient(to bottom, #febbbb 0%,#fe9090 45%,#f7986c 100%); 
+}
+body {
+    text-align: center;
+    min-height: 100%;
+    margin: 0 !important;
+    padding: 0 !important;
+    font-family: montserrat light, sans-serif;
+    min-width: 1210px;
+}
+
+body {
+    height: 100%;
+}
+
+.logo {
+    padding-top: 20px;
+    width: 300px;
+    margin: 0px auto;
+}
+
+.splash-wrapper {
+    width: 1200px;
+    min-height: 500px;
+    margin: 0px auto;
+    margin-top: 20px;
+    text-align: center;
+}
+
+.splash-column {
+    width: 360px;
+    min-height: 330px;
+    float: left;
+    margin: 10px;
+    padding: 10px;
+    background: #EEE;
+    border-radius: 12px;
+    font-family: sans-serif;
+    color: #333;
+}
+
+.splash-column:hover {
+    background: #FFF;
+}
+
+.splash-column > p {
+    font-size: 85%;
+    text-align: left;
+}
+
+footer {
+    font-family: sans-serif;
+    font-size: 90%;
+    color: #555;
+    width: 100%;
+    float: left;
+    margin-top: 40px;
+}
+
+.topbar {
+    margin: 0px;
+    padding: 0px;
+    background: #FFF;
+    border-bottom: 1px solid #999;
+    height: 64px;
+    min-width: 1100px;
+}
+
+.topbar > ul {
+    margin: 0;
+    padding: 0;
+    list-style: none;
+}
+.topbar > ul > li:last-child {
+    border-right: 1px solid #bbd;
+}
+
+.topbar > ul > li {
+    display: inline-block;
+    border-left: 1px solid #bbd;
+    height: 52px;
+    padding: 4px;
+    padding-top:8px;
+    width: 92px;
+    overflow: hidden;    
+    font-weight: light;
+    font-size: 0.7rem;
+    font-family: montserrat light, sans-serif;
+}
+
+.topbar > ul > li > a {
+    text-decoration: none;
+    color: #555;
+}
+
+.topbar > ul > li:hover {
+    background: #FFF;
+}
+
+.topbar > ul > li > a > img {
+   height: 18px;
+   width: 20px;
+   vertical-align: middle;
+   margin: 0 auto;
+   clear: right;
+   display: block;
+   padding: 6px;
+   background-color: #DDD;
+   border: 1px solid rgba(0,0,0,0.2);
+   border-radius: 2px;
+}
+
+ul.community > li.pmc:before {
+    content: "•";
+    padding-right: 8px;
+    color: green;
+}
+
+ul.community > li.chair:before {
+    content: "•";
+    padding-right: 8px;
+    color: blue;
+}
+
+.wrapper-main {
+   font-size: 0.9rem;
+}
+.wrapper-main > div:not(.splash-wrapper){
+    border: 1px solid #BBB;
+    text-align: left;
+    padding: 16px;
+    width:  1100px;
+    border-radius: 12px;
+    margin: 40px auto;
+    background: #FFF;
+}
+
+h1, h2, h3 {
+    text-align: center;
+}
diff --git a/content/docs/asf.html b/content/docs/asf.html
new file mode 100644
index 0000000..23a0d64
--- /dev/null
+++ b/content/docs/asf.html
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+
+<html lang="en"xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!-- Meta, title, CSS, favicons, etc. -->
+    <meta charset="utf-8">
+    <meta property="og:image" content="https://warble.apache.org/images/warble-logo.png" />
+    <base href="../content/">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=1280, initial-scale=1">
+    <link href="css/warble.css" rel="stylesheet">
+    <link rel="icon" type="image/png" sizes="48x48" href="images/warble-favicon.png">
+    <title>Apache® Warble™ (incubating)</title>
+</head>
+
+<body>
+  <nav class="topbar">
+    <img src="images/warble-logo.png" style="height: 48px; display: inline; float: left; margin: 7px;"/>
+    <ul>
+      <li><a href="/"><img src="images/icon-home.png"/> Warble</a></li>
+      <li><a href="/docs/community.html"><img src="images/icon-community.png"/> Community</a></li>
+<!-- WIP !
+      <li><a href="/docs/design.html"><img src="images/icon-design.png"/> Design specs</a></li>
+      <li><a href="/docs/roadmap.html"><img src="images/icon-roadmap.png"/> Road map</a></li>
+      <li><a href="/docs/downloads.html"><img src="images/icon-download.png"/> Source / Downloads</a></li>
+      <li><a href="/docs/documentation.html"><img src="images/icon-documentation.png"/> Docs</a></li>
+      <li><a href="https://demo.warble.apache.org/"><img src="images/icon-demo.png"/> Live demo</a></li>
+/WIP -->
+      <li><a href="/docs/asf.html"><img src="images/icon-feather.png"/> About the ASF</a></li>
+    </ul>
+  </nav>
+  <div class="wrapper-main">
+    <div><h2 id='abouttheapachesoftwarefoundation'>About the Apache Software Foundation<a href='#abouttheapachesoftwarefoundation' style='color: rgba(0,0,0,0);'>&para;</a></h2>
+<p><a class="item" target="_blank" href="https://www.apache.org/">About the ASF<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Become a Sponsor<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/security/">Security<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/></p></div>
+  </div>
+  <footer>
+    <p style="width: 720px; margin: 0 auto; ">
+	    Copyright 2018, the Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/">Apache License v/2</a>.<br/>
+    
+    <i style="font-size: 75%">
+    Apache Warble, Warble, Apache, the Apache feather logo, and the Apache Warble project logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+    </i>
+    </p><br/>
+    <p style="width: 600px; margin: 0 auto; font-size: 12px; color: #302;">
+	<img src="images/incubator-logo.png"/><br/>
+     Apache Warble is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the [...]
+    </p><br/><br/>
+    <!-- obligatory links -->
+    <a class="item" target="_blank" href="https://www.apache.org/">About the ASF</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/events/current-event">Events</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/security/">Security</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/licenses/">License</a>
+  </footer>
+</body>
+</html>
diff --git a/content/docs/community.html b/content/docs/community.html
new file mode 100644
index 0000000..0b6add4
--- /dev/null
+++ b/content/docs/community.html
@@ -0,0 +1,74 @@
+<!DOCTYPE html>
+
+<html lang="en"xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!-- Meta, title, CSS, favicons, etc. -->
+    <meta charset="utf-8">
+    <meta property="og:image" content="https://warble.apache.org/images/warble-logo.png" />
+    <base href="../content/">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=1280, initial-scale=1">
+    <link href="css/warble.css" rel="stylesheet">
+    <link rel="icon" type="image/png" sizes="48x48" href="images/warble-favicon.png">
+    <title>Apache® Warble™ (incubating)</title>
+</head>
+
+<body>
+  <nav class="topbar">
+    <img src="images/warble-logo.png" style="height: 48px; display: inline; float: left; margin: 7px;"/>
+    <ul>
+      <li><a href="/"><img src="images/icon-home.png"/> Warble</a></li>
+      <li><a href="/docs/community.html"><img src="images/icon-community.png"/> Community</a></li>
+<!-- WIP !
+      <li><a href="/docs/design.html"><img src="images/icon-design.png"/> Design specs</a></li>
+      <li><a href="/docs/roadmap.html"><img src="images/icon-roadmap.png"/> Road map</a></li>
+      <li><a href="/docs/downloads.html"><img src="images/icon-download.png"/> Source / Downloads</a></li>
+      <li><a href="/docs/documentation.html"><img src="images/icon-documentation.png"/> Docs</a></li>
+      <li><a href="https://demo.warble.apache.org/"><img src="images/icon-demo.png"/> Live demo</a></li>
+/WIP -->
+      <li><a href="/docs/asf.html"><img src="images/icon-feather.png"/> About the ASF</a></li>
+    </ul>
+  </nav>
+  <div class="wrapper-main">
+    <div><h2 id='thekibblecommunity'>The Kibble Community<a href='#thekibblecommunity' style='color: rgba(0,0,0,0);'>&para;</a></h2>
+<h3 id='whoarewe'>Who are we?<a href='#whoarewe' style='color: rgba(0,0,0,0);'>&para;</a></h3>
+<p>The Apache Warble project is currently comprised of 4 contributors (and counting):</p>
+<ul>
+<li>Chris Lambertus (PPMC member, committer)</li>
+<li>Chris Thistlethwaite (PPMC member, committer)</li>
+<li>Daniel Gruno (PMC member, committer)</li>
+<li>Daniel Takamori (PMC member, committer)</li>
+</ul>
+<h3 id='howtogetinvolved'>How to get involved<a href='#howtogetinvolved' style='color: rgba(0,0,0,0);'>&para;</a></h3>
+<p>The main development and design discussion happens on our mailing lists.
+We have a list specifically for development, and one for future user questions and feedback.</p>
+<p>To join in the discussion on the design and roadmap, you can send an email to <a href="mailto:dev@warble.apache.org">dev@warble.apache.org</a>.<br/>
+You can subscribe to the list by sending an email to <a href="mailto:dev-subscribe@warble.apache.org">dev-subscribe@warble.apache.org</a>.<br/>
+You can also browse the archives online at <a href="https://lists.apache.org/list.html?dev@warble.apache.org">lists.apache.org</a>.</p>
+<p>We also have an IRC channel, #warble on <a href="https://webchat.freenode.net/?channels=#warble">Freenode</a><br/>
+You can also access our HipChat channel at: <a href="https://www.hipchat.com/gTFBvgmMG">https://www.hipchat.com/gTFBvgmMG</a></p>
+<p>HipChat and IRC are bridged, so whichever channel you speak in, we'll see it :)</p></div>
+  </div>
+  <footer>
+    <p style="width: 720px; margin: 0 auto; ">
+	    Copyright 2018, the Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/">Apache License v/2</a>.<br/>
+    
+    <i style="font-size: 75%">
+    Apache Warble, Warble, Apache, the Apache feather logo, and the Apache Warble project logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+    </i>
+    </p><br/>
+    <p style="width: 600px; margin: 0 auto; font-size: 12px; color: #302;">
+	<img src="images/incubator-logo.png"/><br/>
+     Apache Warble is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the [...]
+    </p><br/><br/>
+    <!-- obligatory links -->
+    <a class="item" target="_blank" href="https://www.apache.org/">About the ASF</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/events/current-event">Events</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/security/">Security</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/licenses/">License</a>
+  </footer>
+</body>
+</html>
diff --git a/content/images/icon-demo.png b/content/images/icon-demo.png
new file mode 100644
index 0000000..12772e3
Binary files /dev/null and b/content/images/icon-demo.png differ
diff --git a/content/images/icon-design.png b/content/images/icon-design.png
new file mode 100644
index 0000000..38cc607
Binary files /dev/null and b/content/images/icon-design.png differ
diff --git a/content/images/icon-documentation.png b/content/images/icon-documentation.png
new file mode 100644
index 0000000..287ae72
Binary files /dev/null and b/content/images/icon-documentation.png differ
diff --git a/content/images/icon-download.png b/content/images/icon-download.png
new file mode 100644
index 0000000..ddbdf19
Binary files /dev/null and b/content/images/icon-download.png differ
diff --git a/content/images/icon-feather.png b/content/images/icon-feather.png
new file mode 100644
index 0000000..ed01bfe
Binary files /dev/null and b/content/images/icon-feather.png differ
diff --git a/content/images/icon-home.png b/content/images/icon-home.png
new file mode 100644
index 0000000..2a54fb8
Binary files /dev/null and b/content/images/icon-home.png differ
diff --git a/content/images/icon-roadmap.png b/content/images/icon-roadmap.png
new file mode 100644
index 0000000..482be8f
Binary files /dev/null and b/content/images/icon-roadmap.png differ
diff --git a/content/images/incubator-logo.png b/content/images/incubator-logo.png
new file mode 100644
index 0000000..714dbd7
Binary files /dev/null and b/content/images/incubator-logo.png differ
diff --git a/content/images/quote-bubble.png b/content/images/quote-bubble.png
new file mode 100644
index 0000000..3675e5d
Binary files /dev/null and b/content/images/quote-bubble.png differ
diff --git a/content/images/splash-contact.png b/content/images/splash-contact.png
new file mode 100644
index 0000000..7f5d9f4
Binary files /dev/null and b/content/images/splash-contact.png differ
diff --git a/content/images/splash-mission.png b/content/images/splash-mission.png
new file mode 100644
index 0000000..ed109fe
Binary files /dev/null and b/content/images/splash-mission.png differ
diff --git a/content/images/splash-people.png b/content/images/splash-people.png
new file mode 100644
index 0000000..53ac1dc
Binary files /dev/null and b/content/images/splash-people.png differ
diff --git a/content/images/warble-logo.png b/content/images/warble-logo.png
index 825d703..ced2f98 100644
Binary files a/content/images/warble-logo.png and b/content/images/warble-logo.png differ
diff --git a/content/index.html b/content/index.html
index 35d45f3..5197d21 100644
--- a/content/index.html
+++ b/content/index.html
@@ -1,18 +1,121 @@
 <!DOCTYPE html>
-<html lang="en">
-  <head>
+
+<html lang="en"xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!-- Meta, title, CSS, favicons, etc. -->
     <meta charset="utf-8">
+    <meta property="og:image" content="https://warble.apache.org/images/warble-logo.png" />
+    <base href="../content/">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=1080, initial-scale=1">
-    <title>Apache Warble (incubating)</title>
-  </head>
-  <body>
-     <p style="text-align: center;"><img src="images/warble-logo.png" style="width: 400px;"/></p>
-     <h1 style="text-align: center;">Website coming sooo<small>oo<small>oo<small>oo<small>on...</small></small></small></small></h1>
-     <p style="text-align: center; font-size: 11px; color: #666;">
-	Copyright 2018, the Apache Software Foundation.
-	Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, version 2.0</a>.
-     </p>
-  </body>
-</html>
+    <meta name="viewport" content="width=1280, initial-scale=1">
+    <link href="css/warble.css" rel="stylesheet">
+    <link rel="icon" type="image/png" sizes="48x48" href="images/warble-favicon.png">
+    <title>Apache® Warble™ (incubating)</title>
+</head>
 
+<body>
+  <nav class="topbar">
+    <img src="images/warble-logo.png" style="height: 48px; display: inline; float: left; margin: 7px;"/>
+    <ul>
+      <li><a href="/"><img src="images/icon-home.png"/> Warble</a></li>
+      <li><a href="/docs/community.html"><img src="images/icon-community.png"/> Community</a></li>
+<!-- WIP !
+      <li><a href="/docs/design.html"><img src="images/icon-design.png"/> Design specs</a></li>
+      <li><a href="/docs/roadmap.html"><img src="images/icon-roadmap.png"/> Road map</a></li>
+      <li><a href="/docs/downloads.html"><img src="images/icon-download.png"/> Source / Downloads</a></li>
+      <li><a href="/docs/documentation.html"><img src="images/icon-documentation.png"/> Docs</a></li>
+      <li><a href="https://demo.warble.apache.org/"><img src="images/icon-demo.png"/> Live demo</a></li>
+/WIP -->
+      <li><a href="/docs/asf.html"><img src="images/icon-feather.png"/> About the ASF</a></li>
+    </ul>
+  </nav>
+  <div class="wrapper-main">
+    <p><div class="splash-wrapper">
+    <img src="images/warble-logo.png" class="logo" />
+    <br />
+<div style="margin: 10px auto; width: 500px; height: 102px; line-height: 24px; background: url(/images/quote-bubble.png); background-size: cover; color: #FFF; font-style: italic; font-family: serif; font-size: 22px; padding: 6px;">
+Apache Warble (incubating) is a distributed endpoint monitoring solution where
+    the agent is hosted on your own hardware.
+    </div>
+      <div class="splash-column">
+          <img src="images/splash-mission.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Our mission</strong>
+          <br />
+          <p>The aim of Warble is to
+    produce a more balanced and less binary view of services and
+    systems, lowering the rates of false positives while also providing
+    greater insight into possible peering issues and proactive trend
+    analysis.</p>
+      </div>
+      <div class="splash-column">
+          <img src="images/splash-people.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Who we are</strong>
+          <br />
+          <p>In alphabetical order, we are: 
+          <ul class="community" style="list-style: none; text-align: left; font-size: 85%;">
+              <li class="pmc">Chris Lambertus</li>
+              <li class="pmc">Chris Thistlethwaite</li>
+              <li class="pmc">Daniel Gruno</li>
+              <li class="pmc">Daniel Takamori</li>
+          </ul>
+          <span style="font-size: 85%;">( 
+          <span style="color: green">• PPMC</span>, 
+          <span style="color: red">• Committer</span>)</span></p>
+      </div>
+      <div class="splash-column">
+          <img src="images/splash-contact.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Get in touch</strong>
+          <br />
+          <p>Please use one of our mailing lists to get in touch with the Warble project: 
+          <br />
+          <br /></p>
+          <table border="0" style="font-size: 80%; text-align: left;">
+              <tr>
+                  <td>Users:</td>
+                  <td>
+                      <a href="mailto:users@warble.apache.org">users@warble.apache.org</a>
+                  </td>
+                  <td>[<a href="mailto:users-subscribe@warble.apache.org">subscribe</a>]</td>
+                  <td>[<a href="https://lists.apache.org/list.html?users@warble.apache.org">browse</a>]</td>
+              </tr>
+              <tr>
+                  <td>Developers:</td>
+                  <td>
+                      <a href="mailto:dev@warble.apache.org">dev@warble.apache.org</a>
+                  </td>
+                  <td>[<a href="mailto:dev-subscribe@warble.apache.org">subscribe</a>]</td>
+                  <td>[<a href="https://lists.apache.org/list.html?dev@warble.apache.org">browse</a>]</td>
+              </tr>
+          </table>
+          <br />
+          <p>Or chat to us via IRC on #warble on 
+          <a href="https://webchat.freenode.net/?channels=#warble">Freenode</a></p>
+      </div>
+  </div></p>
+  </div>
+  <footer>
+    <p style="width: 720px; margin: 0 auto; ">
+	    Copyright 2018, the Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/">Apache License v/2</a>.<br/>
+    
+    <i style="font-size: 75%">
+    Apache Warble, Warble, Apache, the Apache feather logo, and the Apache Warble project logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+    </i>
+    </p><br/>
+    <p style="width: 600px; margin: 0 auto; font-size: 12px; color: #302;">
+	<img src="images/incubator-logo.png"/><br/>
+     Apache Warble is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the [...]
+    </p><br/><br/>
+    <!-- obligatory links -->
+    <a class="item" target="_blank" href="https://www.apache.org/">About the ASF</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/events/current-event">Events</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/security/">Security</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/licenses/">License</a>
+  </footer>
+</body>
+</html>
diff --git a/source/generate.py b/source/generate.py
new file mode 100644
index 0000000..fc139e9
--- /dev/null
+++ b/source/generate.py
@@ -0,0 +1,48 @@
+#!/usr/bin/python3
+
+import markdown, codecs, os, sys, re, time, io
+
+
+template = ""
+with open("template.html", "r") as tmpl:
+    template = tmpl.read()
+    tmpl.close()
+    
+def runDir(path):
+    files = os.listdir(path)
+    for f in files:
+        if os.path.isdir('%s/%s' % (path, f)):
+            runDir('%s/%s/' % (path, f))
+        elif f.find(".md") != -1:
+            print("Processing %s" % f)
+            input_file = codecs.open("%s/%s" % (path, f), mode="r", encoding="utf-8")
+            outfile = f.replace(".md", ".html").lower().replace("//", "/")
+            outfile = path.replace("markdown", "", 1) + outfile
+            text = input_file.read()
+            text = re.sub(r"~~~([\s\S]+?)~~~", "<pre>\\1</pre>", text, flags=re.MULTILINE)
+            text = re.sub(r"([A-Z/]+)\.md", lambda x: x.group(1).lower() + ".html", text, flags =re.MULTILINE)
+            html = markdown.markdown(text)
+            # Convert h1-h6 into links
+            html = re.sub(r"<h([1-6])>(.+?)</h[1-6]>", lambda x:
+                "<h%s id='%s'>%s<a href='#%s' style='color: rgba(0,0,0,0);'>&para;</a></h%s>" % (
+                x.group(1),
+                re.sub(r"[^a-z0-9]+", "", x.group(2).lower()),
+                x.group(2),
+                re.sub(r"[^a-z0-9]+", "", x.group(2).lower()),
+                x.group(1)
+                       )
+                          , html)
+            if html.find("<div") == -1:
+                html = "<div>%s</div>" % html
+            html = template.replace("%CONTENT%", html, 1)
+            print("Writing %s..." % outfile)
+            bpath = os.path.dirname(outfile)
+            if not os.path.isdir("../content/" + bpath):
+                print("Making dir %s" % bpath)
+                os.mkdir("../content/%s" % bpath)
+            with io.open('../content/%s' % outfile, "w", encoding='utf8') as out:
+                out.write(html)
+                out.close()
+
+runDir('markdown')
+print("All done!")
\ No newline at end of file
diff --git a/source/markdown/docs/asf.md b/source/markdown/docs/asf.md
new file mode 100644
index 0000000..a9c9a55
--- /dev/null
+++ b/source/markdown/docs/asf.md
@@ -0,0 +1,8 @@
+## About the Apache Software Foundation
+
+<a class="item" target="_blank" href="https://www.apache.org/">About the ASF<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Become a Sponsor<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/security/">Security<span></span></a><br/>
+<a class="item" target="_blank" href="https://www.apache.org/licenses/LICENSE-2.0">License<span></span></a><br/>
diff --git a/source/markdown/docs/community.md b/source/markdown/docs/community.md
new file mode 100644
index 0000000..6d2331f
--- /dev/null
+++ b/source/markdown/docs/community.md
@@ -0,0 +1,24 @@
+## The Kibble Community
+
+### Who are we?
+
+The Apache Warble project is currently comprised of 4 contributors (and counting):
+
+- Chris Lambertus (PPMC member, committer)
+- Chris Thistlethwaite (PPMC member, committer)
+- Daniel Gruno (PMC member, committer)
+- Daniel Takamori (PMC member, committer)
+
+### How to get involved
+
+The main development and design discussion happens on our mailing lists.
+We have a list specifically for development, and one for future user questions and feedback.
+
+To join in the discussion on the design and roadmap, you can send an email to [dev@warble.apache.org](mailto:dev@warble.apache.org).<br/>
+You can subscribe to the list by sending an email to [dev-subscribe@warble.apache.org](mailto:dev-subscribe@warble.apache.org).<br/>
+You can also browse the archives online at [lists.apache.org](https://lists.apache.org/list.html?dev@warble.apache.org).
+
+We also have an IRC channel, #warble on [Freenode](https://webchat.freenode.net/?channels=#warble)<br/>
+You can also access our HipChat channel at: [https://www.hipchat.com/gTFBvgmMG](https://www.hipchat.com/gTFBvgmMG)
+
+HipChat and IRC are bridged, so whichever channel you speak in, we'll see it :)
diff --git a/source/markdown/index.md b/source/markdown/index.md
new file mode 100644
index 0000000..dd3f7c3
--- /dev/null
+++ b/source/markdown/index.md
@@ -0,0 +1,65 @@
+  <div class="splash-wrapper">
+    <img src="images/warble-logo.png" class="logo" />
+    <br />
+<div style="margin: 10px auto; width: 500px; height: 102px; line-height: 24px; background: url(/images/quote-bubble.png); background-size: cover; color: #FFF; font-style: italic; font-family: serif; font-size: 22px; padding: 6px;">
+Apache Warble (incubating) is a distributed endpoint monitoring solution where
+    the agent is hosted on your own hardware.
+    </div>
+      <div class="splash-column">
+          <img src="images/splash-mission.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Our mission</strong>
+          <br />
+          <p>The aim of Warble is to
+    produce a more balanced and less binary view of services and
+    systems, lowering the rates of false positives while also providing
+    greater insight into possible peering issues and proactive trend
+    analysis.</p>
+      </div>
+      <div class="splash-column">
+          <img src="images/splash-people.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Who we are</strong>
+          <br />
+          <p>In alphabetical order, we are: 
+          <ul class="community" style="list-style: none; text-align: left; font-size: 85%;">
+              <li class="pmc">Chris Lambertus</li>
+              <li class="pmc">Chris Thistlethwaite</li>
+              <li class="pmc">Daniel Gruno</li>
+              <li class="pmc">Daniel Takamori</li>
+          </ul>
+          <span style="font-size: 85%;">( 
+          <span style="color: green">• PPMC</span>, 
+          <span style="color: red">• Committer</span>)</span></p>
+      </div>
+      <div class="splash-column">
+          <img src="images/splash-contact.png" style="height: 48px; padding-bottom: 10px;" />
+          <br />
+          <strong>Get in touch</strong>
+          <br />
+          <p>Please use one of our mailing lists to get in touch with the Warble project: 
+          <br />
+          <br /></p>
+          <table border="0" style="font-size: 80%; text-align: left;">
+              <tr>
+                  <td>Users:</td>
+                  <td>
+                      <a href="mailto:users@warble.apache.org">users@warble.apache.org</a>
+                  </td>
+                  <td>[<a href="mailto:users-subscribe@warble.apache.org">subscribe</a>]</td>
+                  <td>[<a href="https://lists.apache.org/list.html?users@warble.apache.org">browse</a>]</td>
+              </tr>
+              <tr>
+                  <td>Developers:</td>
+                  <td>
+                      <a href="mailto:dev@warble.apache.org">dev@warble.apache.org</a>
+                  </td>
+                  <td>[<a href="mailto:dev-subscribe@warble.apache.org">subscribe</a>]</td>
+                  <td>[<a href="https://lists.apache.org/list.html?dev@warble.apache.org">browse</a>]</td>
+              </tr>
+          </table>
+          <br />
+          <p>Or chat to us via IRC on #warble on 
+          <a href="https://webchat.freenode.net/?channels=#warble">Freenode</a></p>
+      </div>
+  </div>
diff --git a/source/template.html b/source/template.html
new file mode 100644
index 0000000..29d9d83
--- /dev/null
+++ b/source/template.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+
+<html lang="en"xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!-- Meta, title, CSS, favicons, etc. -->
+    <meta charset="utf-8">
+    <meta property="og:image" content="https://warble.apache.org/images/warble-logo.png" />
+    <base href="../content/">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=1280, initial-scale=1">
+    <link href="css/warble.css" rel="stylesheet">
+    <link rel="icon" type="image/png" sizes="48x48" href="images/warble-favicon.png">
+    <title>Apache® Warble™ (incubating)</title>
+</head>
+
+<body>
+  <nav class="topbar">
+    <img src="images/warble-logo.png" style="height: 48px; display: inline; float: left; margin: 7px;"/>
+    <ul>
+      <li><a href="/"><img src="images/icon-home.png"/> Warble</a></li>
+      <li><a href="/docs/community.html"><img src="images/icon-community.png"/> Community</a></li>
+<!-- WIP !
+      <li><a href="/docs/design.html"><img src="images/icon-design.png"/> Design specs</a></li>
+      <li><a href="/docs/roadmap.html"><img src="images/icon-roadmap.png"/> Road map</a></li>
+      <li><a href="/docs/downloads.html"><img src="images/icon-download.png"/> Source / Downloads</a></li>
+      <li><a href="/docs/documentation.html"><img src="images/icon-documentation.png"/> Docs</a></li>
+      <li><a href="https://demo.warble.apache.org/"><img src="images/icon-demo.png"/> Live demo</a></li>
+/WIP -->
+      <li><a href="/docs/asf.html"><img src="images/icon-feather.png"/> About the ASF</a></li>
+    </ul>
+  </nav>
+  <div class="wrapper-main">
+    %CONTENT%
+  </div>
+  <footer>
+    <p style="width: 720px; margin: 0 auto; ">
+	    Copyright 2018, the Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/">Apache License v/2</a>.<br/>
+    
+    <i style="font-size: 75%">
+    Apache Warble, Warble, Apache, the Apache feather logo, and the Apache Warble project logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and other countries.
+    </i>
+    </p><br/>
+    <p style="width: 600px; margin: 0 auto; font-size: 12px; color: #302;">
+	<img src="images/incubator-logo.png"/><br/>
+     Apache Warble is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the [...]
+    </p><br/><br/>
+    <!-- obligatory links -->
+    <a class="item" target="_blank" href="https://www.apache.org/">About the ASF</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/events/current-event">Events</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/policies/conduct.html">Code of Conduct</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/thanks.html">Thanks</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/foundation/sponsorship.html">Sponsorship</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/security/">Security</a> - 
+    <a class="item" target="_blank" href="https://www.apache.org/licenses/">License</a>
+  </footer>
+</body>
+</html>

-- 
To stop receiving notification emails like this one, please contact
humbedooh@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@warble.apache.org
For additional commands, e-mail: commits-help@warble.apache.org