Creating base website skeleton for Geronimo.
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..39a4d62
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+output
+.idea
+*.iml
\ No newline at end of file
diff --git a/build_site.sh b/build_site.sh
new file mode 100644
index 0000000..5169761
--- /dev/null
+++ b/build_site.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+WORKDIR=/tmp/geronimo-site
+
+# build the git bits
+rm -rf $WORKDIR
+mkdir -p $WORKDIR
+$JBAKE_HOME/bin/jbake -b . $WORKDIR
+
+# push all of the results to asf-site
+git checkout asf-site
+git clean -f -d
+git pull origin asf-site
+rm -rf *
+mkdir content
+cp -a $WORKDIR/* .
+git add .
+git commit -m "Automatic Site Publish by git-site-role"
+git push origin asf-site
\ No newline at end of file
diff --git a/content/config/index.ad b/content/config/index.ad
new file mode 100644
index 0000000..3b8f788
--- /dev/null
+++ b/content/config/index.ad
@@ -0,0 +1,14 @@
+title=Config
+date=2013-09-24
+type=page
+status=published
+~~~~~~
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel diam purus. Curabitur ut nisi lacus.
+Nam id nisl quam. Donec a lorem sit amet libero pretium vulputate vel ut purus. Suspendisse leo arcu,
+mattis et imperdiet luctus, pulvinar vitae mi. Quisque fermentum sollicitudin feugiat. Mauris nec leo
+ligula. Vestibulum tristique odio ut risus ultricies a hendrerit quam iaculis. Duis tempor elit sit amet
+ligula vehicula et iaculis sem placerat. Fusce dictum, metus at volutpat lacinia, elit massa auctor risus,
+id auctor arcu enim eu augue. Donec ultrices turpis in mi imperdiet ac venenatis sapien sodales. In
+consequat imperdiet nunc quis bibendum. Nulla semper, erat quis ornare tristique, lectus massa posuere
+libero, ut vehicula lectus nunc ut lorem. Aliquam erat volutpat.
\ No newline at end of file
diff --git a/content/safeguard/index.ad b/content/safeguard/index.ad
new file mode 100644
index 0000000..23bc9a9
--- /dev/null
+++ b/content/safeguard/index.ad
@@ -0,0 +1,13 @@
+title=Safeguard
+date=2017-09-05
+type=page
+status=published
+~~~~~~
+
+Apache Safeguard is a toolkit for making your enterprise applications more robust and fault tolerant.  It implements MicroProfile Fault Tolerance specification, supporting:
+
+- Retry Policies
+- Circuit Breakers
+- Bulkheads
+
+As well as giving developers the ability to define timeouts, asynchronous operations and fallback behaviors for your applications.
\ No newline at end of file
diff --git a/content/specs/index.ad b/content/specs/index.ad
new file mode 100644
index 0000000..6c3e059
--- /dev/null
+++ b/content/specs/index.ad
@@ -0,0 +1,7 @@
+title=Geronimo Specifications
+date=2017-09-05
+type=page
+status=published
+~~~~~~
+
+Apache Geronimo hosts compliant APIs of various Java EE specifications.
\ No newline at end of file
diff --git a/content/xbean/index.ad b/content/xbean/index.ad
new file mode 100644
index 0000000..914fedf
--- /dev/null
+++ b/content/xbean/index.ad
@@ -0,0 +1,7 @@
+title=XBean
+date=2017-09-05
+type=page
+status=published
+~~~~~~
+
+The goal of XBean project is to created a plugin based server analogous to Eclipse being a plugin based IDE. XBean will be able to discover, download and install server plugins from an Internet based repository. In addition, we include support for multiple IoC systems, support for running with no IoC system, JMX without JMX code, lifecycle and class loader management, and a rock solid Spring integration.
\ No newline at end of file