You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by he...@apache.org on 2016/01/16 00:02:59 UTC

allura-site git commit: Add admin toolbar post - style updates to article

Repository: allura-site
Updated Branches:
  refs/heads/asf-site ad937aa50 -> 57fd2bef9


Add admin toolbar post - style updates to article


Project: http://git-wip-us.apache.org/repos/asf/allura-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura-site/commit/57fd2bef
Tree: http://git-wip-us.apache.org/repos/asf/allura-site/tree/57fd2bef
Diff: http://git-wip-us.apache.org/repos/asf/allura-site/diff/57fd2bef

Branch: refs/heads/asf-site
Commit: 57fd2bef9415782c1d1c35733ffe86682bc2c322
Parents: ad937aa
Author: Heith Seewald <he...@gmail.com>
Authored: Fri Jan 15 17:53:49 2016 -0500
Committer: Heith Seewald <he...@gmail.com>
Committed: Fri Jan 15 17:53:49 2016 -0500

----------------------------------------------------------------------
 .gitignore                               |   2 +
 _src/allura-theme/static/css/article.css |  33 +++++++
 _src/allura-theme/templates/article.html |  13 ++-
 _src/allura-theme/templates/base.html    |   4 +
 _src/content/2016-admin-toolbar.md       |  43 +++++++++
 _src/content/images/toolbar/edit.gif     | Bin 0 -> 284678 bytes
 _src/content/images/toolbar/grouping.gif | Bin 0 -> 108871 bytes
 _src/content/images/toolbar/install.gif  | Bin 0 -> 188464 bytes
 _src/content/images/toolbar/reorder.gif  | Bin 0 -> 170344 bytes
 feeds/all.atom.xml                       |  18 +++-
 feeds/tag.feature.atom.xml               |  18 +++-
 images/toolbar/edit.gif                  | Bin 0 -> 284678 bytes
 images/toolbar/grouping.gif              | Bin 0 -> 108871 bytes
 images/toolbar/install.gif               | Bin 0 -> 188464 bytes
 images/toolbar/reorder.gif               | Bin 0 -> 170344 bytes
 index.html                               |   4 +-
 news.html                                |  13 ++-
 posts/2015-allura-1.3.1-release.html     |   6 +-
 posts/2015-allura-1.3.2.html             |   6 +-
 posts/2015-cors.html                     |   6 +-
 posts/2015-markdown-editor.html          |   6 +-
 posts/2015-rest-api-docs.html            |   6 +-
 posts/2015-updated-icons.html            |   6 +-
 posts/2016-admin-toolbar.html            | 123 ++++++++++++++++++++++++++
 tag/feature.html                         |  13 ++-
 tag/release.html                         |   2 +-
 theme/css/article.css                    |  33 +++++++
 theme/js/article.js                      |  21 +++++
 28 files changed, 362 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..99ec428
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.pyc
+.idea

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/allura-theme/static/css/article.css
----------------------------------------------------------------------
diff --git a/_src/allura-theme/static/css/article.css b/_src/allura-theme/static/css/article.css
new file mode 100644
index 0000000..d7e5837
--- /dev/null
+++ b/_src/allura-theme/static/css/article.css
@@ -0,0 +1,33 @@
+body{
+    background: #FCFCFC;
+}
+.article-content{
+    max-width: 1000px;
+    margin: auto;
+    background: #FCFCFC;
+    box-sizing: border-box;
+}
+h1, h2, h3 {
+    color: #ff9d00;
+    margin-top: 3rem;
+}
+
+h4 {
+    color: #ff9d00;
+    font-size: larger;
+    margin-top: 3rem;
+    margin-bottom: 1rem;
+}
+
+h5 {
+    color: #2e2e2e;
+    font-size: large;
+}
+
+h6 {
+    margin-top: 2rem;
+}
+
+.drop-shadow{
+    box-shadow: -3px 3px 2px #909090;
+}

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/allura-theme/templates/article.html
----------------------------------------------------------------------
diff --git a/_src/allura-theme/templates/article.html b/_src/allura-theme/templates/article.html
index 302f617..3d7b129 100644
--- a/_src/allura-theme/templates/article.html
+++ b/_src/allura-theme/templates/article.html
@@ -1,5 +1,9 @@
 {% extends "base.html" %}
 
+    {% block extra_css %}
+          <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/article.css">
+    {% endblock extra_css %}
+
 {% block title %}
     {{ article.title|striptags }}
 {% endblock %}
@@ -13,6 +17,7 @@
 {% endblock %}
 
 {% block content %}
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">{{ article.title }}</h3>
@@ -38,4 +43,10 @@
     </div>
   </div>
 </div>
-{% endblock %}
\ No newline at end of file
+</div>
+{% endblock %}
+
+
+  {% block extra_js %}
+        <script type="application/javascript" src="{{ SITEURL }}/theme/js/article.js"></script>
+  {% endblock extra_js %}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/allura-theme/templates/base.html
----------------------------------------------------------------------
diff --git a/_src/allura-theme/templates/base.html b/_src/allura-theme/templates/base.html
index f1ba474..0cddd16 100644
--- a/_src/allura-theme/templates/base.html
+++ b/_src/allura-theme/templates/base.html
@@ -32,6 +32,8 @@
 
   <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css">
+    {% block extra_css %}
+    {% endblock extra_css %}
   {% endblock head %}
 </head>
 
@@ -65,6 +67,8 @@
 
   <script type="application/javascript" src="{{ SITEURL }}/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="{{ SITEURL }}/theme/js/frontend.js"></script>
+  {% block extra_js %}
+  {% endblock extra_js %}
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/content/2016-admin-toolbar.md
----------------------------------------------------------------------
diff --git a/_src/content/2016-admin-toolbar.md b/_src/content/2016-admin-toolbar.md
new file mode 100644
index 0000000..8942f2d
--- /dev/null
+++ b/_src/content/2016-admin-toolbar.md
@@ -0,0 +1,43 @@
+Title: New admin mode now available!
+Date: 2016-01-14
+Tags: feature
+Slug: admin-toolbar
+Summary: Updating your Allura projects has never been easier
+
+
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;When you use the same tools everyday, it is easy to evaluate how you spend most of your time. Even more apparent are the steps and processes that slow you down. Since all of us on the development team use these tools ourselves, we spent the end of the year discussing what processes have been slowing us down. Have you ever tried to rename a repo or give a user permission to moderate your project’s discussions? Did you even know you could do these things?
+
+_Exactly_. 
+
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As we realized where the hitch in the workflow was, we knew there was a more elegant solution. So we set out to build a new admin mode for all projects’ navigation bars. It provides easy access to add new tools to your project, as well as rename, reorder, configure, and delete any tools.
+
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To take this idea from concept to completion, we needed to modernize our frontend tooling. By leveraging Babel we were able to make use of the latest features of Javascript ES2015 and incorporate React and JSX into our workflow. We also wanted to ensure we maintained a clean, consistent style in our frontend code, so we started implementing ESLint. To tie it all together, we then chose Broccoli for our build system because of its incremental rebuilding and its incredibly fast compile times. By utilizing all these resources, we were able to create a new toolbar that approaches customization in a modern way and, as a byproduct, made future frontend endeavours more interesting to work on. 
+
+
+#### Installing a New Tool
+
+<img src="{filename}/images/toolbar/install.gif" class="drop-shadow" width="815" />
+
+The new Admin Toolbar is easy to find and use. There is a “Add New” link on every page, letting you install a new tool from anywhere.  With improved features like tooltips and real-time validation, the updated experience is more intuitive than ever.
+
+#### Tool Options
+
+<img src="{filename}/images/toolbar/edit.gif" class="drop-shadow" width="815" />
+
+To change any tool settings, use the Lock/Unlock button on the right side of the bar.  This feature makes these options accessible when you need them and inconspicuous when you don’t.  And the gear icon opens up a context menu to manage your tools right from the interface, such as renaming, deleting, or setting specific options.  So you’re always only a few clicks away from all your tool settings.
+
+#### Reordering Tools
+
+<img src="{filename}/images/toolbar/reorder.gif" class="drop-shadow" width="815" />
+
+Some key tools are anchored in place, but many tools are movable by dragging and dropping to the desired location.  Just the unlock button, and then drag and drop them into the order you want.  You can even customize the order within sub-menu dropdowns using this method.
+
+
+#### Grouping Similar Tools into Dropdowns
+
+<img src="{filename}/images/toolbar/grouping.gif" class="drop-shadow" width="815"/>
+
+When you have multiple tools of the same type, the Grouping Threshold option is available.  It determines if they will all fit in the navigation bar, or automatically be grouped into a dropdown.
+
+
+Go check it out!
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/content/images/toolbar/edit.gif
----------------------------------------------------------------------
diff --git a/_src/content/images/toolbar/edit.gif b/_src/content/images/toolbar/edit.gif
new file mode 100644
index 0000000..f058a12
Binary files /dev/null and b/_src/content/images/toolbar/edit.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/content/images/toolbar/grouping.gif
----------------------------------------------------------------------
diff --git a/_src/content/images/toolbar/grouping.gif b/_src/content/images/toolbar/grouping.gif
new file mode 100644
index 0000000..7f8c50a
Binary files /dev/null and b/_src/content/images/toolbar/grouping.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/content/images/toolbar/install.gif
----------------------------------------------------------------------
diff --git a/_src/content/images/toolbar/install.gif b/_src/content/images/toolbar/install.gif
new file mode 100644
index 0000000..1637225
Binary files /dev/null and b/_src/content/images/toolbar/install.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/_src/content/images/toolbar/reorder.gif
----------------------------------------------------------------------
diff --git a/_src/content/images/toolbar/reorder.gif b/_src/content/images/toolbar/reorder.gif
new file mode 100644
index 0000000..45123e5
Binary files /dev/null and b/_src/content/images/toolbar/reorder.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/feeds/all.atom.xml
----------------------------------------------------------------------
diff --git a/feeds/all.atom.xml b/feeds/all.atom.xml
index d82a6a3..32243f0 100644
--- a/feeds/all.atom.xml
+++ b/feeds/all.atom.xml
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom"><title>Apache Allura</title><link href="//allura.apache.org/" rel="alternate"></link><link href="//allura.apache.org/feeds/all.atom.xml" rel="self"></link><id>//allura.apache.org/</id><updated>2015-12-08T00:00:00+00:00</updated><entry><title>Apache Allura 1.3.2 released</title><link href="//allura.apache.org/posts/2015-allura-1.3.2.html" rel="alternate"></link><updated>2015-12-08T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-12-08:posts/2015-allura-1.3.2.html</id><summary type="html">&lt;p&gt;Apache Allura 1.3.2 has been released.  It includes 2 security fixes and dozens of small fixes and improvements.  The major
+<feed xmlns="http://www.w3.org/2005/Atom"><title>Apache Allura</title><link href="//allura.apache.org/" rel="alternate"></link><link href="//allura.apache.org/feeds/all.atom.xml" rel="self"></link><id>//allura.apache.org/</id><updated>2016-01-14T00:00:00+00:00</updated><entry><title>New admin mode now available!</title><link href="//allura.apache.org/posts/2016-admin-toolbar.html" rel="alternate"></link><updated>2016-01-14T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2016-01-14:posts/2016-admin-toolbar.html</id><summary type="html">&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;When you use the same tools everyday, it is easy to evaluate how you spend most of your time. Even more apparent are the steps and processes that slow you down. Since all of us on the development team use these tools ourselves, we spent the end of the year discussing what processes have been slowing us down. Have you ever tried to rename a repo or give 
 a user permission to moderate your project’s discussions? Did you even know you could do these things?&lt;/p&gt;
+&lt;p&gt;&lt;em&gt;Exactly&lt;/em&gt;. &lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;As we realized where the hitch in the workflow was, we knew there was a more elegant solution. So we set out to build a new admin mode for all projects’ navigation bars. It provides easy access to add new tools to your project, as well as rename, reorder, configure, and delete any tools.&lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;To take this idea from concept to completion, we needed to modernize our frontend tooling. By leveraging Babel we were able to make use of the latest features of Javascript ES2015 and incorporate React and JSX into our workflow. We also wanted to ensure we maintained a clean, consistent style in our frontend code, so we started implementing ESLint. To tie it all together, we then chose Broccoli for our build system because of its incremental rebuilding and its incredibly fast compile times. By utilizing all these resources, we were able to create a new toolbar that approaches customization in a modern way and, as a byproduct, made future frontend endeavours more interesting to work on. &lt;/p&gt;
+&lt;h4&gt;Installing a New Tool&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/install.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;The new Admin Toolbar is easy to find and use. There is a “Add New” link on every page, letting you install a new tool from anywhere.  With improved features like tooltips and real-time validation, the updated experience is more intuitive than ever.&lt;/p&gt;
+&lt;h4&gt;Tool Options&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/edit.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;To change any tool settings, use the Lock/Unlock button on the right side of the bar.  This feature makes these options accessible when you need them and inconspicuous when you don’t.  And the gear icon opens up a context menu to manage your tools right from the interface, such as renaming, deleting, or setting specific options.  So you’re always only a few clicks away from all your tool settings.&lt;/p&gt;
+&lt;h4&gt;Reordering Tools&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/reorder.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;Some key tools are anchored in place, but many tools are movable by dragging and dropping to the desired location.  Just the unlock button, and then drag and drop them into the order you want.  You can even customize the order within sub-menu dropdowns using this method.&lt;/p&gt;
+&lt;h4&gt;Grouping Similar Tools into Dropdowns&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/grouping.gif" class="drop-shadow" width="815"/&gt;&lt;/p&gt;
+&lt;p&gt;When you have multiple tools of the same type, the Grouping Threshold option is available.  It determines if they will all fit in the navigation bar, or automatically be grouped into a dropdown.&lt;/p&gt;
+&lt;p&gt;Go check it out!&lt;/p&gt;</summary><category term="feature"></category></entry><entry><title>Apache Allura 1.3.2 released</title><link href="//allura.apache.org/posts/2015-allura-1.3.2.html" rel="alternate"></link><updated>2015-12-08T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-12-08:posts/2015-allura-1.3.2.html</id><summary type="html">&lt;p&gt;Apache Allura 1.3.2 has been released.  It includes 2 security fixes and dozens of small fixes and improvements.  The major
 new features are:&lt;/p&gt;
 &lt;ul&gt;
 &lt;li&gt;&lt;a href="//allura.apache.org/posts/2015-updated-icons.html"&gt;Updated icons and cleaner project navigation bar.&lt;/a&gt;&lt;/li&gt;

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/feeds/tag.feature.atom.xml
----------------------------------------------------------------------
diff --git a/feeds/tag.feature.atom.xml b/feeds/tag.feature.atom.xml
index 708cc84..d5050b0 100644
--- a/feeds/tag.feature.atom.xml
+++ b/feeds/tag.feature.atom.xml
@@ -1,5 +1,21 @@
 <?xml version="1.0" encoding="utf-8"?>
-<feed xmlns="http://www.w3.org/2005/Atom"><title>Apache Allura</title><link href="//allura.apache.org/" rel="alternate"></link><link href="//allura.apache.org/feeds/tag.feature.atom.xml" rel="self"></link><id>//allura.apache.org/</id><updated>2015-10-28T00:00:00+00:00</updated><entry><title>Updated Icons, Cleaner Nav Bar</title><link href="//allura.apache.org/posts/2015-updated-icons.html" rel="alternate"></link><updated>2015-10-28T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-10-28:posts/2015-updated-icons.html</id><summary type="html">&lt;p&gt;Two big UI improvements have landed in Allura's master branch recently.&lt;/p&gt;
+<feed xmlns="http://www.w3.org/2005/Atom"><title>Apache Allura</title><link href="//allura.apache.org/" rel="alternate"></link><link href="//allura.apache.org/feeds/tag.feature.atom.xml" rel="self"></link><id>//allura.apache.org/</id><updated>2016-01-14T00:00:00+00:00</updated><entry><title>New admin mode now available!</title><link href="//allura.apache.org/posts/2016-admin-toolbar.html" rel="alternate"></link><updated>2016-01-14T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2016-01-14:posts/2016-admin-toolbar.html</id><summary type="html">&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;When you use the same tools everyday, it is easy to evaluate how you spend most of your time. Even more apparent are the steps and processes that slow you down. Since all of us on the development team use these tools ourselves, we spent the end of the year discussing what processes have been slowing us down. Have you ever tried to rename a repo 
 or give a user permission to moderate your project’s discussions? Did you even know you could do these things?&lt;/p&gt;
+&lt;p&gt;&lt;em&gt;Exactly&lt;/em&gt;. &lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;As we realized where the hitch in the workflow was, we knew there was a more elegant solution. So we set out to build a new admin mode for all projects’ navigation bars. It provides easy access to add new tools to your project, as well as rename, reorder, configure, and delete any tools.&lt;/p&gt;
+&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;To take this idea from concept to completion, we needed to modernize our frontend tooling. By leveraging Babel we were able to make use of the latest features of Javascript ES2015 and incorporate React and JSX into our workflow. We also wanted to ensure we maintained a clean, consistent style in our frontend code, so we started implementing ESLint. To tie it all together, we then chose Broccoli for our build system because of its incremental rebuilding and its incredibly fast compile times. By utilizing all these resources, we were able to create a new toolbar that approaches customization in a modern way and, as a byproduct, made future frontend endeavours more interesting to work on. &lt;/p&gt;
+&lt;h4&gt;Installing a New Tool&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/install.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;The new Admin Toolbar is easy to find and use. There is a “Add New” link on every page, letting you install a new tool from anywhere.  With improved features like tooltips and real-time validation, the updated experience is more intuitive than ever.&lt;/p&gt;
+&lt;h4&gt;Tool Options&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/edit.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;To change any tool settings, use the Lock/Unlock button on the right side of the bar.  This feature makes these options accessible when you need them and inconspicuous when you don’t.  And the gear icon opens up a context menu to manage your tools right from the interface, such as renaming, deleting, or setting specific options.  So you’re always only a few clicks away from all your tool settings.&lt;/p&gt;
+&lt;h4&gt;Reordering Tools&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/reorder.gif" class="drop-shadow" width="815" /&gt;&lt;/p&gt;
+&lt;p&gt;Some key tools are anchored in place, but many tools are movable by dragging and dropping to the desired location.  Just the unlock button, and then drag and drop them into the order you want.  You can even customize the order within sub-menu dropdowns using this method.&lt;/p&gt;
+&lt;h4&gt;Grouping Similar Tools into Dropdowns&lt;/h4&gt;
+&lt;p&gt;&lt;img src="//allura.apache.org/images/toolbar/grouping.gif" class="drop-shadow" width="815"/&gt;&lt;/p&gt;
+&lt;p&gt;When you have multiple tools of the same type, the Grouping Threshold option is available.  It determines if they will all fit in the navigation bar, or automatically be grouped into a dropdown.&lt;/p&gt;
+&lt;p&gt;Go check it out!&lt;/p&gt;</summary><category term="feature"></category></entry><entry><title>Updated Icons, Cleaner Nav Bar</title><link href="//allura.apache.org/posts/2015-updated-icons.html" rel="alternate"></link><updated>2015-10-28T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-10-28:posts/2015-updated-icons.html</id><summary type="html">&lt;p&gt;Two big UI improvements have landed in Allura's master branch recently.&lt;/p&gt;
 &lt;p&gt;First, we've removed the icons for each tool (wiki, discussion, code, etc).  The icons looked dated, and cluttered
 the project navigation bar.  They also presented challenges of what tool icon to use when a new tool was added.  So now
 they are gone, and the project nav bar in particular looks much cleaner:&lt;/p&gt;

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/images/toolbar/edit.gif
----------------------------------------------------------------------
diff --git a/images/toolbar/edit.gif b/images/toolbar/edit.gif
new file mode 100644
index 0000000..f058a12
Binary files /dev/null and b/images/toolbar/edit.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/images/toolbar/grouping.gif
----------------------------------------------------------------------
diff --git a/images/toolbar/grouping.gif b/images/toolbar/grouping.gif
new file mode 100644
index 0000000..7f8c50a
Binary files /dev/null and b/images/toolbar/grouping.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/images/toolbar/install.gif
----------------------------------------------------------------------
diff --git a/images/toolbar/install.gif b/images/toolbar/install.gif
new file mode 100644
index 0000000..1637225
Binary files /dev/null and b/images/toolbar/install.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/images/toolbar/reorder.gif
----------------------------------------------------------------------
diff --git a/images/toolbar/reorder.gif b/images/toolbar/reorder.gif
new file mode 100644
index 0000000..45123e5
Binary files /dev/null and b/images/toolbar/reorder.gif differ

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 9b73335..a92f9e5 100644
--- a/index.html
+++ b/index.html
@@ -95,11 +95,11 @@
         <div id="news" class="col-12 auto-margin pad-vert-xs text-center">
             <h5>News</h5>
             <ul>
+                    <li><a href="//allura.apache.org/posts/2016-admin-toolbar.html">New admin mode now available!</a></li>
                     <li><a href="//allura.apache.org/posts/2015-allura-1.3.2.html">Apache Allura 1.3.2 released</a></li>
                     <li><a href="//allura.apache.org/posts/2015-updated-icons.html">Updated Icons, Cleaner Nav Bar</a></li>
                     <li><a href="//allura.apache.org/posts/2015-rest-api-docs.html">REST API documentation</a></li>
                     <li><a href="//allura.apache.org/posts/2015-allura-1.3.1-release.html">Apache Allura 1.3.1 released</a></li>
-                    <li><a href="//allura.apache.org/posts/2015-markdown-editor.html">New Markdown Editor</a></li>
                 <li><a href="//allura.apache.org/news.html">All News &rarr;</a></li>
             </ul>
         </div>
@@ -200,7 +200,7 @@
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/news.html
----------------------------------------------------------------------
diff --git a/news.html b/news.html
index 2d7273b..27d3c2e 100644
--- a/news.html
+++ b/news.html
@@ -53,6 +53,17 @@
 
 <div class="row bg-white pad-bot-md text-center">
   <div class="row pad-top-md">
+    <h3><a class="text-black" href="//allura.apache.org/posts/2016-admin-toolbar.html">New admin mode now available!</a></h3>
+  </div>
+
+  <div class="post-info">
+    Published:
+    <abbr class="published" title="2016-01-14T00:00:00+00:00">
+      Thu 14 January 2016
+    </abbr>
+  </div>
+  <div class="entry-content"> <p>Updating your Allura projects has never been easier</p> </div>
+  <div class="row pad-top-md">
     <h3><a class="text-black" href="//allura.apache.org/posts/2015-allura-1.3.2.html">Apache Allura 1.3.2 released</a></h3>
   </div>
 
@@ -125,7 +136,7 @@
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-allura-1.3.1-release.html
----------------------------------------------------------------------
diff --git a/posts/2015-allura-1.3.1-release.html b/posts/2015-allura-1.3.1-release.html
index e23ec39..9a918e3 100644
--- a/posts/2015-allura-1.3.1-release.html
+++ b/posts/2015-allura-1.3.1-release.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">Apache Allura 1.3.1 released</h3>
@@ -80,10 +82,11 @@ new features are:</p>
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -92,6 +95,7 @@ new features are:</p>
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-allura-1.3.2.html
----------------------------------------------------------------------
diff --git a/posts/2015-allura-1.3.2.html b/posts/2015-allura-1.3.2.html
index 3b59463..4727168 100644
--- a/posts/2015-allura-1.3.2.html
+++ b/posts/2015-allura-1.3.2.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">Apache Allura 1.3.2 released</h3>
@@ -84,10 +86,11 @@ new features are:</p>
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -96,6 +99,7 @@ new features are:</p>
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-cors.html
----------------------------------------------------------------------
diff --git a/posts/2015-cors.html b/posts/2015-cors.html
index 617cba3..f4ed0cd 100644
--- a/posts/2015-cors.html
+++ b/posts/2015-cors.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">CORS support added to Allura</h3>
@@ -77,10 +79,11 @@ cookies cannot be used - so nobody could be tricked into doing something acciden
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -89,6 +92,7 @@ cookies cannot be used - so nobody could be tricked into doing something acciden
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-markdown-editor.html
----------------------------------------------------------------------
diff --git a/posts/2015-markdown-editor.html b/posts/2015-markdown-editor.html
index 82ed971..70d481a 100644
--- a/posts/2015-markdown-editor.html
+++ b/posts/2015-markdown-editor.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">New Markdown Editor</h3>
@@ -81,10 +83,11 @@ reference page.</p></div>
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -93,6 +96,7 @@ reference page.</p></div>
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-rest-api-docs.html
----------------------------------------------------------------------
diff --git a/posts/2015-rest-api-docs.html b/posts/2015-rest-api-docs.html
index 36b3003..877910b 100644
--- a/posts/2015-rest-api-docs.html
+++ b/posts/2015-rest-api-docs.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">REST API documentation</h3>
@@ -74,10 +76,11 @@ This portal also lets you try the API live, so you can see exactly what each API
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -86,6 +89,7 @@ This portal also lets you try the API live, so you can see exactly what each API
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2015-updated-icons.html
----------------------------------------------------------------------
diff --git a/posts/2015-updated-icons.html b/posts/2015-updated-icons.html
index 3c3d259..fe7f785 100644
--- a/posts/2015-updated-icons.html
+++ b/posts/2015-updated-icons.html
@@ -32,6 +32,7 @@
 
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
   <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
 
 
 </head>
@@ -48,6 +49,7 @@
       </header>
     </div>
 
+    <div class="article-content">
 <div class="row bg-white pad-vert-lg">
   <div class="row">
     <h3 class="text-black text-center">Updated Icons, Cleaner Nav Bar</h3>
@@ -85,10 +87,11 @@ screens:</p>
     </div>
   </div>
 </div>
+</div>
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>
@@ -97,6 +100,7 @@ screens:</p>
 
   <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
   <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
   <!-- Credits
 
           Logo Design: Will Leonard

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/posts/2016-admin-toolbar.html
----------------------------------------------------------------------
diff --git a/posts/2016-admin-toolbar.html b/posts/2016-admin-toolbar.html
new file mode 100644
index 0000000..4f37450
--- /dev/null
+++ b/posts/2016-admin-toolbar.html
@@ -0,0 +1,123 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <title>    New admin mode now available!
+</title>
+  <meta charset="utf-8">
+  <meta name="description" content="Allura is an open source implementation of a software forge, a site that manages source code repositories, bug reports, discussions, and more for projects.">
+  <meta name="keywords" content="">
+  <meta name="author" content="">
+  <link rel="canonical" href="//allura.apache.org">
+
+  <!--    Facebook Meta Info-->
+  <meta property="og:url" content="//allura.apache.org">
+  <meta property="og:image" content="//allura.apache.org/theme/img/logo-asf-apache.png">
+  <meta property="og:description" content="Allura is an open source implementation of a software forge, a site that manages source code repositories, bug reports, discussions, and more for projects.">
+  <meta property="og:title" content="Apache Allura">
+  <meta property="og:site_name" content="Apache Allura">
+  <meta property="og:see_also" content="//allura.apache.org">
+
+  <!--    Twitter Meta Info-->
+  <meta name="twitter:card" content="Allura is an open source implementation of a software forge, a site that manages source code repositories, bug reports, discussions, and more for projects.">
+  <meta name="twitter:url" content="//allura.apache.org">
+  <meta name="twitter:title" content="Apache Allura">
+  <meta name="twitter:description" content="Allura is an open source implementation of a software forge, a site that manages source code repositories, bug reports, discussions, and more for projects.">
+  <meta name="twitter:image" content="//allura.apache.org/theme/img/logo-asf-apache.png">
+
+  <!--    Google+ Meta Info-->
+  <meta itemprop="name" content="Apache Allura">
+  <meta itemprop="description" content="Allura is an open source implementation of a software forge, a site that manages source code repositories, bug reports, discussions, and more for projects.">
+  <meta itemprop="image" content="//allura.apache.org/theme/img/logo-asf-apache.png">
+
+  <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/flex.min.css">
+  <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/style.css">
+          <link rel="stylesheet" type="text/css" href="//allura.apache.org/theme/css/article.css">
+
+
+</head>
+
+<body cz-shortcut-listen="true" class="pg-">
+  <section id="content_wrapper" class="mobile-desktop row">
+    <div id="header" class="row ">
+      <header id="login_header" class="row">
+        <div class="bg-shadow pad-vert-md">
+          <span><h1 class="text-center"><a href="//allura.apache.org">Apache <img src="//allura.apache.org/theme/img/logo_white.png" width="94"> Allura<span class="tm">™</span></a></h1></span>
+          <span></span>
+          <h6 class="text-center">Open source project hosting platform</h6>
+        </div>
+      </header>
+    </div>
+
+    <div class="article-content">
+<div class="row bg-white pad-vert-lg">
+  <div class="row">
+    <h3 class="text-black text-center">New admin mode now available!</h3>
+  </div>
+
+  <div class="post-info text-center">
+    Published:
+    <abbr class="published" title="2016-01-14T00:00:00+00:00">
+      Thu 14 January 2016
+    </abbr>
+    <br>
+    Tagged:
+        <a href="//allura.apache.org/tag/feature.html">feature</a>
+  </div>
+
+  <div class="row">
+    <div class="col-20 no-float auto-margin">
+      <div class="row">
+        <div class="pad-md text-black"><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;When you use the same tools everyday, it is easy to evaluate how you spend most of your time. Even more apparent are the steps and processes that slow you down. Since all of us on the development team use these tools ourselves, we spent the end of the year discussing what processes have been slowing us down. Have you ever tried to rename a repo or give a user permission to moderate your project’s discussions? Did you even know you could do these things?</p>
+<p><em>Exactly</em>. </p>
+<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;As we realized where the hitch in the workflow was, we knew there was a more elegant solution. So we set out to build a new admin mode for all projects’ navigation bars. It provides easy access to add new tools to your project, as well as rename, reorder, configure, and delete any tools.</p>
+<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;To take this idea from concept to completion, we needed to modernize our frontend tooling. By leveraging Babel we were able to make use of the latest features of Javascript ES2015 and incorporate React and JSX into our workflow. We also wanted to ensure we maintained a clean, consistent style in our frontend code, so we started implementing ESLint. To tie it all together, we then chose Broccoli for our build system because of its incremental rebuilding and its incredibly fast compile times. By utilizing all these resources, we were able to create a new toolbar that approaches customization in a modern way and, as a byproduct, made future frontend endeavours more interesting to work on. </p>
+<h4>Installing a New Tool</h4>
+<p><img src="//allura.apache.org/images/toolbar/install.gif" class="drop-shadow" width="815" /></p>
+<p>The new Admin Toolbar is easy to find and use. There is a “Add New” link on every page, letting you install a new tool from anywhere.  With improved features like tooltips and real-time validation, the updated experience is more intuitive than ever.</p>
+<h4>Tool Options</h4>
+<p><img src="//allura.apache.org/images/toolbar/edit.gif" class="drop-shadow" width="815" /></p>
+<p>To change any tool settings, use the Lock/Unlock button on the right side of the bar.  This feature makes these options accessible when you need them and inconspicuous when you don’t.  And the gear icon opens up a context menu to manage your tools right from the interface, such as renaming, deleting, or setting specific options.  So you’re always only a few clicks away from all your tool settings.</p>
+<h4>Reordering Tools</h4>
+<p><img src="//allura.apache.org/images/toolbar/reorder.gif" class="drop-shadow" width="815" /></p>
+<p>Some key tools are anchored in place, but many tools are movable by dragging and dropping to the desired location.  Just the unlock button, and then drag and drop them into the order you want.  You can even customize the order within sub-menu dropdowns using this method.</p>
+<h4>Grouping Similar Tools into Dropdowns</h4>
+<p><img src="//allura.apache.org/images/toolbar/grouping.gif" class="drop-shadow" width="815"/></p>
+<p>When you have multiple tools of the same type, the Grouping Threshold option is available.  It determines if they will all fit in the navigation bar, or automatically be grouped into a dropdown.</p>
+<p>Go check it out!</p></div>
+      </div>
+    </div>
+  </div>
+</div>
+</div>
+
+    <div class="row">
+      <footer id="footer" class="bg-black text-white col-24">
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
+            <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
+        <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
+      </footer>
+    </div>
+  </section>
+
+  <script type="application/javascript" src="//allura.apache.org/theme/js/jquery-1.11.2.min.js"></script>
+  <script type="application/javascript" src="//allura.apache.org/theme/js/frontend.js"></script>
+        <script type="application/javascript" src="//allura.apache.org/theme/js/article.js"></script>
+  <!-- Credits
+
+          Logo Design: Will Leonard
+          http://willleonard.org
+
+          Site design: Perry Merrity
+          http://perrymerrity.com/
+
+          bg-header-forge.jpg
+          Photo by: Stefan Schmitz
+          https://creativecommons.org/licenses/by-nd/2.0
+
+          bg-developers-fire.jpg
+          Photo by: Frédéric Bisson
+          https://creativecommons.org/licenses/by-nd/2.0
+      -->
+</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/tag/feature.html
----------------------------------------------------------------------
diff --git a/tag/feature.html b/tag/feature.html
index ccca502..8c387c4 100644
--- a/tag/feature.html
+++ b/tag/feature.html
@@ -53,6 +53,17 @@
 
 <div class="row bg-white pad-bot-md text-center">
   <div class="row pad-top-md">
+    <h3><a class="text-black" href="//allura.apache.org/posts/2016-admin-toolbar.html">New admin mode now available!</a></h3>
+  </div>
+
+  <div class="post-info">
+    Published:
+    <abbr class="published" title="2016-01-14T00:00:00+00:00">
+      Thu 14 January 2016
+    </abbr>
+  </div>
+  <div class="entry-content"> <p>Updating your Allura projects has never been easier</p> </div>
+  <div class="row pad-top-md">
     <h3><a class="text-black" href="//allura.apache.org/posts/2015-updated-icons.html">Updated Icons, Cleaner Nav Bar</a></h3>
   </div>
 
@@ -92,7 +103,7 @@
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/tag/release.html
----------------------------------------------------------------------
diff --git a/tag/release.html b/tag/release.html
index 10ea07f..2e2c949 100644
--- a/tag/release.html
+++ b/tag/release.html
@@ -81,7 +81,7 @@
 
     <div class="row">
       <footer id="footer" class="bg-black text-white col-24">
-        <p class="copy pad-top-sm text-center">Copyright © 2015 The Apache Software Foundation, Licensed under
+        <p class="copy pad-top-sm text-center">Copyright © 2016 The Apache Software Foundation, Licensed under
             <a href="http://www.apache.org/licenses/LICENSE-2.0.html">the Apache License, Version 2.0.</a></p>
         <p class="copy pad-bot-sm text-center">Apache, Allura, Apache Allura, and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
       </footer>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/theme/css/article.css
----------------------------------------------------------------------
diff --git a/theme/css/article.css b/theme/css/article.css
new file mode 100644
index 0000000..d7e5837
--- /dev/null
+++ b/theme/css/article.css
@@ -0,0 +1,33 @@
+body{
+    background: #FCFCFC;
+}
+.article-content{
+    max-width: 1000px;
+    margin: auto;
+    background: #FCFCFC;
+    box-sizing: border-box;
+}
+h1, h2, h3 {
+    color: #ff9d00;
+    margin-top: 3rem;
+}
+
+h4 {
+    color: #ff9d00;
+    font-size: larger;
+    margin-top: 3rem;
+    margin-bottom: 1rem;
+}
+
+h5 {
+    color: #2e2e2e;
+    font-size: large;
+}
+
+h6 {
+    margin-top: 2rem;
+}
+
+.drop-shadow{
+    box-shadow: -3px 3px 2px #909090;
+}

http://git-wip-us.apache.org/repos/asf/allura-site/blob/57fd2bef/theme/js/article.js
----------------------------------------------------------------------
diff --git a/theme/js/article.js b/theme/js/article.js
new file mode 100644
index 0000000..08dfc7f
--- /dev/null
+++ b/theme/js/article.js
@@ -0,0 +1,21 @@
+$(document).ready(function () {
+    $(function () {
+        var i = 0;
+        var imagePath, fullName, name, ext, result;
+        $(".animate").on("click",
+            function () {
+                imagePath = $(this).attr("src").split('/');
+                fullName = imagePath.pop();
+                name = fullName.split('.')[0];
+                ext = fullName.split('.')[1];
+                result = imagePath.join("/") + "/" + name;
+                if (i % 2 === 0) {
+                    $(this).attr("src", result + '.jpg');
+                } else {
+                    $(this).attr("src", result+ '.gif');
+                }
+                i++;
+            }
+        );
+    });
+});
\ No newline at end of file