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

imaxon pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/asterixdb-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new ddd64c6  Fix breakage due to CSP changes
ddd64c6 is described below

commit ddd64c6f1d7ee40dd6887e25f5566e391bda7111
Author: Ian Maxon <[email protected]>
AuthorDate: Wed Mar 12 10:49:54 2025 -0700

    Fix breakage due to CSP changes
    
    The Apache CSP changed so that we can't load any
    scripts, fonts, or images from other URLs.
    Therefore all the ones we currently use have to be
    put here so they're loaded from the same domain.
    Also fix some Jekyll URL templating so that
    _config_dev.yml can work properly with modern
    Jekyll verisons.
    
    Change-Id:If17ec8dbd1de435c9a0c6edf4dab71e6ede2a5a3
    Reviewed-on: 
https://asterix-gerrit.ics.uci.edu/c/incubator-asterixdb-site/+/19508
    Reviewed-by: Ian Maxon <[email protected]>
---
 _config.yml                                |   2 +-
 _config.yml => _config_dev.yml             |   2 +-
 _includes/nav_header.html                  |  22 +++++++--------
 _layouts/default.html                      |  12 ++++----
 content/about.html                         |  34 +++++++++++-----------
 content/community.html                     |  34 +++++++++++-----------
 content/css/font-awesome.min.css           |   4 +++
 content/dev-setup.html                     |  34 +++++++++++-----------
 content/docs/0.8.7-incubating/api.html     |   1 +
 content/docs/0.9.3/aql/primer.html         |   1 -
 content/docs/0.9.3/sqlpp/primer-sqlpp.html |   5 ++--
 content/download.html                      |  34 +++++++++++-----------
 content/extension.html                     |  34 +++++++++++-----------
 content/fonts/fontawesome-webfont.ttf      | Bin 0 -> 122092 bytes
 content/fonts/fontawesome-webfont.woff     | Bin 0 -> 71508 bytes
 content/fonts/fontawesome-webfont.woff2    | Bin 0 -> 56780 bytes
 content/img/flexible_data.png              | Bin 0 -> 25080 bytes
 content/img/nutshell_architecture.png      | Bin 0 -> 50690 bytes
 content/img/pubchart.png                   | Bin 0 -> 22200 bytes
 content/index.html                         |  44 ++++++++++++++---------------
 content/js/jquery.min.js                   |   4 +++
 content/pushing.html                       |  34 +++++++++++-----------
 content/site.html                          |  34 +++++++++++-----------
 content/tools.html                         |  44 ++++++++++++++---------------
 css/font-awesome.min.css                   |   4 +++
 fonts/fontawesome-webfont.ttf              | Bin 0 -> 122092 bytes
 fonts/fontawesome-webfont.woff             | Bin 0 -> 71508 bytes
 fonts/fontawesome-webfont.woff2            | Bin 0 -> 56780 bytes
 img/flexible_data.png                      | Bin 0 -> 25080 bytes
 img/nutshell_architecture.png              | Bin 0 -> 50690 bytes
 img/pubchart.png                           | Bin 0 -> 22200 bytes
 index.md                                   |   6 ++--
 js/jquery.min.js                           |   4 +++
 33 files changed, 205 insertions(+), 188 deletions(-)

diff --git a/_config.yml b/_config.yml
index 1f872a9..7950786 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,4 +1,4 @@
-url: ""
+url: "https://asterixdb.apache.org";
 name: "Apache AsterixDB"
 
 STABLE_VERSION: 0.9.9
diff --git a/_config.yml b/_config_dev.yml
similarity index 97%
copy from _config.yml
copy to _config_dev.yml
index 1f872a9..60b41ff 100644
--- a/_config.yml
+++ b/_config_dev.yml
@@ -1,4 +1,4 @@
-url: ""
+url: "http://localhost:4000";
 name: "Apache AsterixDB"
 
 STABLE_VERSION: 0.9.9
diff --git a/_includes/nav_header.html b/_includes/nav_header.html
index e056d13..55e55fe 100644
--- a/_includes/nav_header.html
+++ b/_includes/nav_header.html
@@ -15,11 +15,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="{{ site.url 
}}index.html">Overview</a>
+            <a class="navbar-brand" href="{{ site.url }}{{ site.baseurl 
}}/index.html">Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="{{ site.url }}download.html">Download</a></li>
+              <li><a href="{{ site.url }}{{ site.baseurl 
}}/download.html">Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -30,16 +30,16 @@
                   <li><a href="{{ site.UNSTABLE_DOCS_BASE_URL 
}}index.html">Documentation for {{ site.UNSTABLE_VERSION }}  <i class="fa 
fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="{{ site.url }}files/SQL_Book.pdf">Don 
Chamberlin's SQL++ for SQL Users<i class="fa fa-external-link 
fa-sm"></i></a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/files/SQL_Book.pdf">Don Chamberlin's SQL++ for SQL Users<i class="fa 
fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="{{ site.url }}about.html">About</a></li>
+              <li><a href="{{ site.url }}{{ site.baseurl 
}}/about.html">About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="{{ site.url }}community.html">Mailing 
Lists</a></li>
-                  <li><a href="{{ site.url }}community.html#irc">IRC</a></li>
-                  <li><a href="{{ site.url 
}}community.html#asterixdb-team">Team</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/community.html">Mailing Lists</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/community.html#irc">IRC</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/community.html#asterixdb-team">Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -47,13 +47,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="{{ site.url }}dev-setup.html">Development 
Setup</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/dev-setup.html">Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="{{ site.url }}pushing.html">Pushing 
changes</a></li>
-                  <li><a href="{{ site.url }}site.html">Editing this 
site</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/pushing.html">Pushing changes</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/site.html">Editing this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="{{ site.url }}extension.html">Extending 
AsterixDB</a></li>
+                  <li><a href="{{ site.url }}{{ site.baseurl 
}}/extension.html">Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
diff --git a/_layouts/default.html b/_layouts/default.html
index 5140a25..6fe417d 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -7,24 +7,24 @@
     <!-- 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">
+    <link rel="icon" href="{{ site.url }}{{ site.baseurl }}/favicon.ico">
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>{{ page.title }}</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="{{ site.url }}css/bootstrap.min.css" rel="stylesheet">
+    <link href="{{ site.url }}{{ site.baseurl }}/css/bootstrap.min.css" 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="{{ site.url }}css/theme.css" rel="stylesheet">
+    <link href="{{ site.url }}{{ site.baseurl }}/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">
+    <link rel="stylesheet" href="{{ site.url }}{{ site.baseurl 
}}/css/font-awesome.min.css">
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -49,7 +49,7 @@
     <!-- 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>
+    <script src="{{ site.url }}{{ site.baseurl }}/js/jquery.min.js"></script>
+    <script src="{{ site.url }}{{ site.baseurl 
}}/js/bootstrap.min.js"></script>
   </body>
 </html>
diff --git a/content/about.html b/content/about.html
index f3bacc2..97fbc63 100644
--- a/content/about.html
+++ b/content/about.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>About Apache AsterixDB</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -175,7 +175,7 @@ the Apache Incubator in Febuary of 2015 and was established 
as a TLP in April of
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/community.html b/content/community.html
index 96b1175..edd2511 100644
--- a/content/community.html
+++ b/content/community.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Community</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -434,7 +434,7 @@ answers to any AsterixDB-related questions.</p>
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/css/font-awesome.min.css b/content/css/font-awesome.min.css
new file mode 100644
index 0000000..24fcc04
--- /dev/null
+++ b/content/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT 
License)
+ 
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0')
 format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') 
format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') 
format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') 
format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular')
 format('svg');font-weight:normal;font-style:norma [...]
\ No newline at end of file
diff --git a/content/dev-setup.html b/content/dev-setup.html
index ce63bea..2ce81de 100644
--- a/content/dev-setup.html
+++ b/content/dev-setup.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Contributing to AsterixDB</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -464,7 +464,7 @@ Then simply click ‘Trigger Selected’ and the patch will 
start building.</p>
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/docs/0.8.7-incubating/api.html 
b/content/docs/0.8.7-incubating/api.html
index ef38cca..a8e6d8f 100644
--- a/content/docs/0.8.7-incubating/api.html
+++ b/content/docs/0.8.7-incubating/api.html
@@ -20,6 +20,7 @@
                           
         
 
+          
             </head>
         <body class="topBarDisabled">
           
diff --git a/content/docs/0.9.3/aql/primer.html 
b/content/docs/0.9.3/aql/primer.html
index b71f56d..8e31ef7 100644
--- a/content/docs/0.9.3/aql/primer.html
+++ b/content/docs/0.9.3/aql/primer.html
@@ -19,7 +19,6 @@
 
                           
         
-
           
             </head>
         <body class="topBarDisabled">
diff --git a/content/docs/0.9.3/sqlpp/primer-sqlpp.html 
b/content/docs/0.9.3/sqlpp/primer-sqlpp.html
index 2d93691..5918753 100644
--- a/content/docs/0.9.3/sqlpp/primer-sqlpp.html
+++ b/content/docs/0.9.3/sqlpp/primer-sqlpp.html
@@ -18,9 +18,10 @@
     <script type="text/javascript" 
src="../js/apache-maven-fluido-1.3.0.min.js"></script>
 
                           
-        
 
-          
+
+
+
             </head>
         <body class="topBarDisabled">
           
diff --git a/content/download.html b/content/download.html
index d66ee01..178ed2c 100644
--- a/content/download.html
+++ b/content/download.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Download</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -219,7 +219,7 @@
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/extension.html b/content/extension.html
index 5b1451e..90cb6d5 100644
--- a/content/extension.html
+++ b/content/extension.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>AsterixDB Extensions</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -187,7 +187,7 @@
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/fonts/fontawesome-webfont.ttf 
b/content/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..ed9372f
Binary files /dev/null and b/content/fonts/fontawesome-webfont.ttf differ
diff --git a/content/fonts/fontawesome-webfont.woff 
b/content/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..8b280b9
Binary files /dev/null and b/content/fonts/fontawesome-webfont.woff differ
diff --git a/content/fonts/fontawesome-webfont.woff2 
b/content/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..3311d58
Binary files /dev/null and b/content/fonts/fontawesome-webfont.woff2 differ
diff --git a/content/img/flexible_data.png b/content/img/flexible_data.png
new file mode 100644
index 0000000..6d693b7
Binary files /dev/null and b/content/img/flexible_data.png differ
diff --git a/content/img/nutshell_architecture.png 
b/content/img/nutshell_architecture.png
new file mode 100644
index 0000000..38272d8
Binary files /dev/null and b/content/img/nutshell_architecture.png differ
diff --git a/content/img/pubchart.png b/content/img/pubchart.png
new file mode 100644
index 0000000..95f55c7
Binary files /dev/null and b/content/img/pubchart.png differ
diff --git a/content/index.html b/content/index.html
index a6b4c5b..307cae3 100644
--- a/content/index.html
+++ b/content/index.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Apache AsterixDB</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -134,12 +134,12 @@
 
   <div class="col-md-4">
     <h3 id="flexible-data">Flexible Data</h3>
-    <img 
src="https://docs.google.com/drawings/d/1-0YZZz3XvOLEfMNhgt-Bf5jgscwHi3N4vVVg9d7hDnI/pub?w=394&amp;h=369";
 width="80%" />
+    <img src="https://asterixdb.apache.org/img/flexible_data.png"; width="80%" 
/>
   </div>
 
   <div class="col-md-4 text-center"> 
     <h3 id="architecture">Architecture</h3> 
-    <img 
src="https://docs.google.com/drawings/d/11X2RlI95SoWR5wLtnV7kG727uae6pbUPOnYjG9jm5c8/pub?w=720&amp;h=364";
 width="100%" /> 
+    <img src="https://asterixdb.apache.org/img/nutshell_architecture.png"; 
width="100%" /> 
   </div>
 
 </div>
@@ -156,7 +156,7 @@
 
   <div class="col-md-6 text-center">
   <h3 id="performance-highlights">Performance Highlights</h3>
-<a 
href="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";><img
 
src="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";
 width="100%" /></a>
+<a 
href="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";><img
 src="https://asterixdb.apache.org/img/pubchart.png"; width="100%" /></a>
   </div>
 </div>
 
@@ -167,9 +167,9 @@
 <div class="row">
   <div class="col-md-6">
     <h3 id="community-and-support">Community and Support</h3>
-    <p>If you have any questions, please feel free to ask on our <a 
href="mailto:[email protected]";>users</a> mailing list, which you can 
subscribe to by sending an empty email to <a 
href="[email protected]">users-subscribe</a>. Check out the 
<a href="community.html">Community</a> page for more details.</p>
+    <p>If you have any questions, please feel free to ask on our <a 
href="mailto:[email protected]";>users</a> mailing list, which you can 
subscribe to by sending an empty email to <a 
href="[email protected]">users-subscribe</a>. Check out the 
<a href="https://asterixdb.apache.orgcommunity.html";>Community</a> page for 
more details.</p>
 
-    <p>If you would like to know more about how to contribute to AsterixDB or 
any of its related components, head on over to the <a 
href="dev-setup.html">Contributing</a> page to learn more.</p>
+    <p>If you would like to know more about how to contribute to AsterixDB or 
any of its related components, head on over to the <a 
href="https://asterixdb.apache.orgdev-setup.html";>Contributing</a> page to 
learn more.</p>
   </div>
   <div class="col-md-6">
     <h3 id="download">Download</h3>
@@ -200,7 +200,7 @@
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/js/jquery.min.js b/content/js/jquery.min.js
new file mode 100644
index 0000000..e6a051d
--- /dev/null
+++ b/content/js/jquery.min.js
@@ -0,0 +1,4 @@
+/*! jQuery v1.11.2 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
+!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.2",m=function(a,b){return
 new 
m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b
 [...]
+return!0}function Q(a,b,d,e){if(m.acceptData(a)){var 
f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void
 0!==d||"string"!=typeof b)return 
k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof
 b||"function"==typeof 
b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void
 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof 
b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}fu [...]
+}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")},cur:function(){var
 a=Zb.propHooks[this.prop];return 
a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var 
b,c=Zb.propHooks[this.prop];return 
this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(
 [...]
diff --git a/content/pushing.html b/content/pushing.html
index 3813d55..d4c3901 100644
--- a/content/pushing.html
+++ b/content/pushing.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Submitting Changes</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -186,7 +186,7 @@ In the simplest case, this simply means for someone who is 
authorized (any Apach
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/site.html b/content/site.html
index 7aabd4d..75758ed 100644
--- a/content/site.html
+++ b/content/site.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Editing this website</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -244,7 +244,7 @@ jekyll 3.1.2 | Error:  uninitialized constant 
Kramdown::Converter::PygmentsHtml:
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/content/tools.html b/content/tools.html
index c12be52..c6923b6 100644
--- a/content/tools.html
+++ b/content/tools.html
@@ -7,24 +7,24 @@
     <!-- 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="favicon.ico">
+    <link rel="icon" href="https://asterixdb.apache.org/favicon.ico";>
     <meta http-equiv="Content-Security-Policy" content="frame-src youtube.com 
www.youtube.com">
 
     <title>Tools</title>
 
     <!-- Bootstrap core CSS -->
-    <link href="css/bootstrap.min.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/css/bootstrap.min.css"; 
rel="stylesheet">
     <!-- Bootstrap theme -->
 
     <!-- Custom styles for this template -->
-    <link href="css/theme.css" rel="stylesheet">
+    <link href="https://asterixdb.apache.org/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">
+    <link rel="stylesheet" 
href="https://asterixdb.apache.org/css/font-awesome.min.css";>
   </head>
 
   <div class="container theme-showcase" role="main">
@@ -45,11 +45,11 @@
               <span class="icon-bar"></span>
               <span class="icon-bar"></span>
             </button>
-            <a class="navbar-brand" href="index.html">Overview</a>
+            <a class="navbar-brand" 
href="https://asterixdb.apache.org/index.html";>Overview</a>
           </div>
           <div class="navbar-collapse collapse">
             <ul class="nav navbar-nav">
-              <li><a href="download.html">Download</a></li>
+              <li><a 
href="https://asterixdb.apache.org/download.html";>Download</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Documentation<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
@@ -60,16 +60,16 @@
                   <li><a 
href="https://ci.apache.org/projects/asterixdb/index.html";>Documentation for 
0.9.10-SNAPSHOT  <i class="fa fa-external-link fa-sm"></i></a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">Tutorial for SQL Users</li>
-                  <li><a href="files/SQL_Book.pdf">Don Chamberlin's SQL++ for 
SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
+                  <li><a 
href="https://asterixdb.apache.org/files/SQL_Book.pdf";>Don Chamberlin's SQL++ 
for SQL Users<i class="fa fa-external-link fa-sm"></i></a></li>
                 </ul>
               </li>
-              <li><a href="about.html">About</a></li>
+              <li><a 
href="https://asterixdb.apache.org/about.html";>About</a></li>
               <li class="dropdown">
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Community<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
-                  <li><a href="community.html">Mailing Lists</a></li>
-                  <li><a href="community.html#irc">IRC</a></li>
-                  <li><a href="community.html#asterixdb-team">Team</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html";>Mailing Lists</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#irc";>IRC</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/community.html#asterixdb-team";>Team</a></li>
                   <li><a 
href="https://issues.apache.org/jira/browse/ASTERIXDB";>Issue Tracker</a></li>
                 </ul>
               </li>
@@ -77,13 +77,13 @@
                 <a href="#" class="dropdown-toggle" data-toggle="dropdown" 
role="button" aria-expanded="false">Development<span class="caret"></span></a>
                 <ul class="dropdown-menu" role="menu">
                   <li class="dropdown-header">For New Contributors</li>
-                  <li><a href="dev-setup.html">Development Setup</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/dev-setup.html";>Development Setup</a></li>
                   <li class="divider"></li>
                   <li class="dropdown-header">For Committers</li>
-                  <li><a href="pushing.html">Pushing changes</a></li>
-                  <li><a href="site.html">Editing this site</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/pushing.html";>Pushing changes</a></li>
+                  <li><a href="https://asterixdb.apache.org/site.html";>Editing 
this site</a></li>
                   <li class="dropdown-header">Extensions</li>
-                  <li><a href="extension.html">Extending AsterixDB</a></li>
+                  <li><a 
href="https://asterixdb.apache.org/extension.html";>Extending AsterixDB</a></li>
                 </ul>
               </li>
             </ul>
@@ -120,7 +120,7 @@ This page lists some of them, in no particular order.</p>
 <h3 id="apache-tools">Apache Tools</h3>
 
 <p>|———————————————————————————–|——————-|
-|<img src="/img/tools/maven.png" height="100" />     |      |</p>
+|<img src="https://asterixdb.apache.org/img/tools/maven.png"; height="100" />   
  |      |</p>
 <hr />
 
 <h4 id="open-source-tools">Open Source Tools</h4>
@@ -128,11 +128,11 @@ This page lists some of them, in no particular order.</p>
 <table class="table table-striped">
   <tbody>
     <tr>
-      <td><img src="/img/tools/jenkins.png" height="100" /></td>
+      <td><img src="https://asterixdb.apache.org/img/tools/jenkins.png"; 
height="100" /></td>
       <td> </td>
     </tr>
     <tr>
-      <td><img src="/img/tools/gerrit.png" height="100" /></td>
+      <td><img src="https://asterixdb.apache.org/img/tools/gerrit.png"; 
height="100" /></td>
       <td>Gerrit is used by the majority of developers as a staging repository 
for new changes and as a code review tool</td>
     </tr>
   </tbody>
@@ -145,11 +145,11 @@ This page lists some of them, in no particular order.</p>
 <table class="table table-striped">
   <tbody>
     <tr>
-      <td><img src="/img/tools/yourkit.png" height="100" /></td>
+      <td><img src="https://asterixdb.apache.org/img/tools/yourkit.png"; 
height="100" /></td>
       <td>YourKit whenever a hard to</td>
     </tr>
     <tr>
-      <td><img src="/img/tools/intellij.png" height="100" /></td>
+      <td><img src="https://asterixdb.apache.org/img/tools/intellij.png"; 
height="100" /></td>
       <td> </td>
     </tr>
   </tbody>
@@ -176,7 +176,7 @@ This page lists some of them, in no particular order.</p>
     <!-- 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="js/bootstrap.min.js"></script>
+    <script src="https://asterixdb.apache.org/js/jquery.min.js";></script>
+    <script src="https://asterixdb.apache.org/js/bootstrap.min.js";></script>
   </body>
 </html>
diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css
new file mode 100644
index 0000000..24fcc04
--- /dev/null
+++ b/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT 
License)
+ 
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0')
 format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') 
format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') 
format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') 
format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular')
 format('svg');font-weight:normal;font-style:norma [...]
\ No newline at end of file
diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..ed9372f
Binary files /dev/null and b/fonts/fontawesome-webfont.ttf differ
diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..8b280b9
Binary files /dev/null and b/fonts/fontawesome-webfont.woff differ
diff --git a/fonts/fontawesome-webfont.woff2 b/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..3311d58
Binary files /dev/null and b/fonts/fontawesome-webfont.woff2 differ
diff --git a/img/flexible_data.png b/img/flexible_data.png
new file mode 100644
index 0000000..6d693b7
Binary files /dev/null and b/img/flexible_data.png differ
diff --git a/img/nutshell_architecture.png b/img/nutshell_architecture.png
new file mode 100644
index 0000000..38272d8
Binary files /dev/null and b/img/nutshell_architecture.png differ
diff --git a/img/pubchart.png b/img/pubchart.png
new file mode 100644
index 0000000..95f55c7
Binary files /dev/null and b/img/pubchart.png differ
diff --git a/index.md b/index.md
index e3863ad..f4a4b4e 100644
--- a/index.md
+++ b/index.md
@@ -26,12 +26,12 @@ layout: default
 
   <div class="col-md-4">
     <h3 id="flexible-data">Flexible Data</h3>
-    <img 
src="https://docs.google.com/drawings/d/1-0YZZz3XvOLEfMNhgt-Bf5jgscwHi3N4vVVg9d7hDnI/pub?w=394&amp;h=369";
 width="80%">
+    <img src="{{ site.url }}/img/flexible_data.png" width="80%">
   </div>
 
   <div class="col-md-4 text-center"> 
     <h3 id="architecture">Architecture</h3> 
-    <img 
src="https://docs.google.com/drawings/d/11X2RlI95SoWR5wLtnV7kG727uae6pbUPOnYjG9jm5c8/pub?w=720&amp;h=364";
 width="100%"> 
+    <img src="{{ site.url }}/img/nutshell_architecture.png" width="100%"> 
   </div>
 
 </div>
@@ -49,7 +49,7 @@ layout: default
 
   <div class="col-md-6 text-center">
   <h3 id="performance-highlights">Performance Highlights</h3>
-<a 
href="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";><img
 
src="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";
 width="100%" /></a>
+<a 
href="https://docs.google.com/spreadsheets/d/1PTtUUxijKWBS5CQU7lPEQEa7e8fp7n8Js0gq_tvittA/pubchart?oid=1652093339&amp;format=image";><img
 src="{{ site.url }}/img/pubchart.png" width="100%" /></a>
   </div>
 </div>
 
diff --git a/js/jquery.min.js b/js/jquery.min.js
new file mode 100644
index 0000000..e6a051d
--- /dev/null
+++ b/js/jquery.min.js
@@ -0,0 +1,4 @@
+/*! jQuery v1.11.2 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
+!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.2",m=function(a,b){return
 new 
m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b
 [...]
+return!0}function Q(a,b,d,e){if(m.acceptData(a)){var 
f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void
 0!==d||"string"!=typeof b)return 
k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof
 b||"function"==typeof 
b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void
 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof 
b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}fu [...]
+}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")},cur:function(){var
 a=Zb.propHooks[this.prop];return 
a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var 
b,c=Zb.propHooks[this.prop];return 
this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(
 [...]

Reply via email to