You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/08/10 18:44:31 UTC

[1/2] allura-site git commit: 1.3.1 release announcement

Repository: allura-site
Updated Branches:
  refs/heads/asf-site a451c0b14 -> 3be47b7ce


1.3.1 release announcement


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

Branch: refs/heads/asf-site
Commit: 5a24235fbb539422b7a7353af8b5dbe78af2ca57
Parents: a451c0b
Author: Dave Brondsema <da...@brondsema.net>
Authored: Mon Aug 10 12:36:25 2015 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Mon Aug 10 12:36:25 2015 -0400

----------------------------------------------------------------------
 _src/allura-theme/static/css/style.css    |  4 +++-
 _src/allura-theme/templates/index.html    |  2 +-
 _src/content/2015-allura-1.3.1-release.md | 16 ++++++++++++++++
 _src/pelicanconf.py                       |  7 ++++---
 4 files changed, 24 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura-site/blob/5a24235f/_src/allura-theme/static/css/style.css
----------------------------------------------------------------------
diff --git a/_src/allura-theme/static/css/style.css b/_src/allura-theme/static/css/style.css
index 6a66356..8bd92d9 100644
--- a/_src/allura-theme/static/css/style.css
+++ b/_src/allura-theme/static/css/style.css
@@ -159,7 +159,6 @@ blockquote {
 }
 
 ul li {
-    list-style: none;
     margin-left: 1em;
     padding: 10px 0;
 }
@@ -606,6 +605,9 @@ a {
     margin-right: auto;
 }
 
+.pg-index ul li {
+    list-style: none;
+}
 
 .post-info {
     margin: 0 auto;

http://git-wip-us.apache.org/repos/asf/allura-site/blob/5a24235f/_src/allura-theme/templates/index.html
----------------------------------------------------------------------
diff --git a/_src/allura-theme/templates/index.html b/_src/allura-theme/templates/index.html
index 28b72c3..841e0a7 100644
--- a/_src/allura-theme/templates/index.html
+++ b/_src/allura-theme/templates/index.html
@@ -47,7 +47,7 @@
         <div id="release" class="col-12 auto-margin pad-vert-xs text-center">
           <a href="http://www.apache.org/dyn/closer.cgi/allura/allura-{{ RELEASE_VERSION }}.tar.gz"><button class="auto-margin">Download v{{ RELEASE_VERSION }}</button></a>
           <span class="text-white">{{ RELEASE_DATE }} &mdash;</span>
-          <a href="{{ GIT_URL }}ci/asf_release_{{ RELEASE_VERSION }}/tree/CHANGES">Changelog</a>
+          <a href="{{ RELEASE_NEWS }}">What's New</a>
           <ul>
             <li class="text-white"><a href="{{ DIST_URL }}allura-{{ RELEASE_VERSION }}.tar.gz.md5" class="text-white" download="">md5</a>, <a href="{{ DIST_URL }}allura-{{ RELEASE_VERSION }}.tar.gz.sha1" class="text-white" download="">sha1</a>, <a href="{{ DIST_URL }}allura-{{ RELEASE_VERSION }}.tar.gz.sha512" class="text-white" download="">sha512 sums</a></li>
             <li class="text-white">PGP <a href="{{ DIST_URL }}allura-{{ RELEASE_VERSION }}.tar.gz.asc" class="text-white" download="">signature</a> &amp; <a href="{{ DIST_URL }}KEYS" class="text-white" download="">keys</a></li>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/5a24235f/_src/content/2015-allura-1.3.1-release.md
----------------------------------------------------------------------
diff --git a/_src/content/2015-allura-1.3.1-release.md b/_src/content/2015-allura-1.3.1-release.md
new file mode 100644
index 0000000..b7ea0f3
--- /dev/null
+++ b/_src/content/2015-allura-1.3.1-release.md
@@ -0,0 +1,16 @@
+Title: Apache Allura 1.3.1 released
+Date: 2015-08-10
+Tags: release
+Slug: allura-1.3.1-release
+Summary: Version 1.3.1 of Allura brings security fixes, new markdown editor, CORS, and more.
+
+Apache Allura 1.3.1 has been released.  It includes 3 security fixes and many small fixes and improvements.  The major
+new features are:
+
+* [CORS support]({filename}/2015-cors.md), allowing broader access to the REST APIs.
+* A [brand new Markdown editor]({filename}/2015-markdown-editor.md) with syntax highlighting and an editing toolbar.
+* New and updated docs for [Installation](https://forge-allura.apache.org/docs/getting_started/installation.html) and 
+[Administration](https://forge-allura.apache.org/docs/getting_started/administration.html) 
+* Ticket notifications include links to attachments.
+
+[View the full Changelog](https://forge-allura.apache.org/p/allura/git/ci/asf_release_1.3.1/tree/CHANGES)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/allura-site/blob/5a24235f/_src/pelicanconf.py
----------------------------------------------------------------------
diff --git a/_src/pelicanconf.py b/_src/pelicanconf.py
index bbe8d43..7756402 100644
--- a/_src/pelicanconf.py
+++ b/_src/pelicanconf.py
@@ -45,8 +45,9 @@ TAG_FEED_ATOM = 'feeds/tag.%s.atom.xml'
 
 CURRENT_YEAR = dt.date.today().year
 
-RELEASE_VERSION = '1.3.0'
-RELEASE_DATE = 'Jun 2015'
+RELEASE_VERSION = '1.3.1'
+RELEASE_DATE = 'Aug 2015'
+RELEASE_NEWS = 'posts/2015-allura-1.3.1-release.html'
 DIST_URL = 'http://apache.org/dist/allura/'
 
 FORGE_ALLURA_URL = 'https://forge-allura.apache.org/'
@@ -54,4 +55,4 @@ FEATURES_URL = '{}p/allura/wiki/Features/'.format(FORGE_ALLURA_URL)
 FEATURES_COMPARISON_URL = '{}p/allura/wiki/Feature%20Comparison/'.format(FORGE_ALLURA_URL)
 GIT_URL = '{}p/allura/git/'.format(FORGE_ALLURA_URL)
 WIKI_URL = '{}p/allura/wiki/'.format(FORGE_ALLURA_URL)
-TICKETS_URL = '{}p/allura/tickets/'.format(FORGE_ALLURA_URL)
+TICKETS_URL = '{}p/allura/tickets/'.format(FORGE_ALLURA_URL)
\ No newline at end of file


[2/2] allura-site git commit: regen html

Posted by br...@apache.org.
regen html


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

Branch: refs/heads/asf-site
Commit: 3be47b7ce6b97c4ebdd75f6ab41e207b4051a18d
Parents: 5a24235
Author: Dave Brondsema <da...@brondsema.net>
Authored: Mon Aug 10 12:42:08 2015 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Mon Aug 10 12:43:55 2015 -0400

----------------------------------------------------------------------
 feeds/all.atom.xml                   |  11 ++-
 feeds/tag.release.atom.xml           |  11 +++
 index.html                           |  11 +--
 posts/2015-allura-1.3.1-release.html | 112 ++++++++++++++++++++++++++++++
 tag/release.html                     |  99 ++++++++++++++++++++++++++
 theme/css/style.css                  |   4 +-
 6 files changed, 241 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura-site/blob/3be47b7c/feeds/all.atom.xml
----------------------------------------------------------------------
diff --git a/feeds/all.atom.xml b/feeds/all.atom.xml
index 9f2c8ec..3e6be52 100644
--- a/feeds/all.atom.xml
+++ b/feeds/all.atom.xml
@@ -1,5 +1,14 @@
 <?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-07-29T00:00:00+00:00</updated><entry><title>New Markdown Editor</title><link href="//allura.apache.org/posts/2015-markdown-editor.html" rel="alternate"></link><updated>2015-07-29T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-07-29:posts/2015-markdown-editor.html</id><summary type="html">&lt;p&gt;Allura's markdown editor has been completely replaced.  Previously a simple textarea with limited assistance, it now runs
+<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-08-10T00:00:00+00:00</updated><entry><title>Apache Allura 1.3.1 released</title><link href="//allura.apache.org/posts/2015-allura-1.3.1-release.html" rel="alternate"></link><updated>2015-08-10T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-08-10:posts/2015-allura-1.3.1-release.html</id><summary type="html">&lt;p&gt;Apache Allura 1.3.1 has been released.  It includes 3 security fixes and many 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-cors.html"&gt;CORS support&lt;/a&gt;, allowing broader access to the REST APIs.&lt;/li&gt;
+&lt;li&gt;A &lt;a href="//allura.apache.org/posts/2015-markdown-editor.html"&gt;brand new Markdown editor&lt;/a&gt; with syntax highlighting and an editing toolbar.&lt;/li&gt;
+&lt;li&gt;New and updated docs for &lt;a href="https://forge-allura.apache.org/docs/getting_started/installation.html"&gt;Installation&lt;/a&gt; and 
+&lt;a href="https://forge-allura.apache.org/docs/getting_started/administration.html"&gt;Administration&lt;/a&gt; &lt;/li&gt;
+&lt;li&gt;Ticket notifications include links to attachments.&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;&lt;a href="https://forge-allura.apache.org/p/allura/git/ci/asf_release_1.3.1/tree/CHANGES"&gt;View the full Changelog&lt;/a&gt;&lt;/p&gt;</summary><category term="release"></category></entry><entry><title>New Markdown Editor</title><link href="//allura.apache.org/posts/2015-markdown-editor.html" rel="alternate"></link><updated>2015-07-29T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-07-29:posts/2015-markdown-editor.html</id><summary type="html">&lt;p&gt;Allura's markdown editor has been completely replaced.  Previously a simple textarea with limited assistance, it now runs
 the &lt;a href="http://nextstepwebs.github.io/simplemde-markdown-editor/"&gt;SimpleMDE Markdown Editor&lt;/a&gt; and includes live syntax highlighting and
 a helpful toolbar.  It will be included in the next release of Allura, or is available now by using the latest code from &lt;code&gt;git&lt;/code&gt;.&lt;/p&gt;
 &lt;p&gt;Markdown is a core part of Allura and is used in every text area, including tickets, wiki pages, commenting, etc.  Markdown

http://git-wip-us.apache.org/repos/asf/allura-site/blob/3be47b7c/feeds/tag.release.atom.xml
----------------------------------------------------------------------
diff --git a/feeds/tag.release.atom.xml b/feeds/tag.release.atom.xml
new file mode 100644
index 0000000..41d3842
--- /dev/null
+++ b/feeds/tag.release.atom.xml
@@ -0,0 +1,11 @@
+<?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.release.atom.xml" rel="self"></link><id>//allura.apache.org/</id><updated>2015-08-10T00:00:00+00:00</updated><entry><title>Apache Allura 1.3.1 released</title><link href="//allura.apache.org/posts/2015-allura-1.3.1-release.html" rel="alternate"></link><updated>2015-08-10T00:00:00+00:00</updated><author><name></name></author><id>tag:allura.apache.org,2015-08-10:posts/2015-allura-1.3.1-release.html</id><summary type="html">&lt;p&gt;Apache Allura 1.3.1 has been released.  It includes 3 security fixes and many 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-cors.html"&gt;CORS support&lt;/a&gt;, allowing broader access to the REST APIs.&lt;/li&gt;
+&lt;li&gt;A &lt;a href="//allura.apache.org/posts/2015-markdown-editor.html"&gt;brand new Markdown editor&lt;/a&gt; with syntax highlighting and an editing toolbar.&lt;/li&gt;
+&lt;li&gt;New and updated docs for &lt;a href="https://forge-allura.apache.org/docs/getting_started/installation.html"&gt;Installation&lt;/a&gt; and 
+&lt;a href="https://forge-allura.apache.org/docs/getting_started/administration.html"&gt;Administration&lt;/a&gt; &lt;/li&gt;
+&lt;li&gt;Ticket notifications include links to attachments.&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;&lt;a href="https://forge-allura.apache.org/p/allura/git/ci/asf_release_1.3.1/tree/CHANGES"&gt;View the full Changelog&lt;/a&gt;&lt;/p&gt;</summary><category term="release"></category></entry></feed>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/allura-site/blob/3be47b7c/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 7ac0fa8..f486450 100644
--- a/index.html
+++ b/index.html
@@ -84,17 +84,18 @@
       <h3 class="text-center">Get the Latest Version of Allura</h3>
       <div class="row pad-vert-md">
         <div id="release" class="col-12 auto-margin pad-vert-xs text-center">
-          <a href="http://www.apache.org/dyn/closer.cgi/allura/allura-1.3.0.tar.gz"><button class="auto-margin">Download v1.3.0</button></a>
-          <span class="text-white">Jun 2015 &mdash;</span>
-          <a href="https://forge-allura.apache.org/p/allura/git/ci/asf_release_1.3.0/tree/CHANGES">Changelog</a>
+          <a href="http://www.apache.org/dyn/closer.cgi/allura/allura-1.3.1.tar.gz"><button class="auto-margin">Download v1.3.1</button></a>
+          <span class="text-white">Aug 2015 &mdash;</span>
+          <a href="posts/2015-allura-1.3.1-release.html">What's New</a>
           <ul>
-            <li class="text-white"><a href="http://apache.org/dist/allura/allura-1.3.0.tar.gz.md5" class="text-white" download="">md5</a>, <a href="http://apache.org/dist/allura/allura-1.3.0.tar.gz.sha1" class="text-white" download="">sha1</a>, <a href="http://apache.org/dist/allura/allura-1.3.0.tar.gz.sha512" class="text-white" download="">sha512 sums</a></li>
-            <li class="text-white">PGP <a href="http://apache.org/dist/allura/allura-1.3.0.tar.gz.asc" class="text-white" download="">signature</a> &amp; <a href="http://apache.org/dist/allura/KEYS" class="text-white" download="">keys</a></li>
+            <li class="text-white"><a href="http://apache.org/dist/allura/allura-1.3.1.tar.gz.md5" class="text-white" download="">md5</a>, <a href="http://apache.org/dist/allura/allura-1.3.1.tar.gz.sha1" class="text-white" download="">sha1</a>, <a href="http://apache.org/dist/allura/allura-1.3.1.tar.gz.sha512" class="text-white" download="">sha512 sums</a></li>
+            <li class="text-white">PGP <a href="http://apache.org/dist/allura/allura-1.3.1.tar.gz.asc" class="text-white" download="">signature</a> &amp; <a href="http://apache.org/dist/allura/KEYS" class="text-white" download="">keys</a></li>
           </ul>
         </div>
         <div id="news" class="col-12 auto-margin pad-vert-xs text-center">
             <h5>News</h5>
             <ul>
+                    <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/posts/2015-cors.html">CORS support added to Allura</a></li>
             </ul>

http://git-wip-us.apache.org/repos/asf/allura-site/blob/3be47b7c/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
new file mode 100644
index 0000000..e23ec39
--- /dev/null
+++ b/posts/2015-allura-1.3.1-release.html
@@ -0,0 +1,112 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <title>    Apache Allura 1.3.1 released
+</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">
+
+
+</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="row bg-white pad-vert-lg">
+  <div class="row">
+    <h3 class="text-black text-center">Apache Allura 1.3.1 released</h3>
+  </div>
+
+  <div class="post-info text-center">
+    Published:
+    <abbr class="published" title="2015-08-10T00:00:00+00:00">
+      Mon 10 August 2015
+    </abbr>
+    <br>
+    Tagged:
+        <a href="//allura.apache.org/tag/release.html">release</a>
+  </div>
+
+  <div class="row">
+    <div class="col-20 no-float auto-margin">
+      <div class="row">
+        <div class="pad-md text-black"><p>Apache Allura 1.3.1 has been released.  It includes 3 security fixes and many small fixes and improvements.  The major
+new features are:</p>
+<ul>
+<li><a href="//allura.apache.org/posts/2015-cors.html">CORS support</a>, allowing broader access to the REST APIs.</li>
+<li>A <a href="//allura.apache.org/posts/2015-markdown-editor.html">brand new Markdown editor</a> with syntax highlighting and an editing toolbar.</li>
+<li>New and updated docs for <a href="https://forge-allura.apache.org/docs/getting_started/installation.html">Installation</a> and 
+<a href="https://forge-allura.apache.org/docs/getting_started/administration.html">Administration</a> </li>
+<li>Ticket notifications include links to attachments.</li>
+</ul>
+<p><a href="https://forge-allura.apache.org/p/allura/git/ci/asf_release_1.3.1/tree/CHANGES">View the full Changelog</a></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
+            <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>
+  <!-- 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/3be47b7c/tag/release.html
----------------------------------------------------------------------
diff --git a/tag/release.html b/tag/release.html
new file mode 100644
index 0000000..c43a998
--- /dev/null
+++ b/tag/release.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <title>Apache Allura : 'release' articles</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="alternate" type="application/atom+xml" href="//allura.apache.org/feeds/tag.release.atom.xml" title="Articles tagged 'release">
+</head>
+
+<body cz-shortcut-listen="true" class="pg-tag/release">
+  <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>
+
+<section id="content">
+
+    <h2>Articles tagged 'release'</h2>
+
+<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/2015-allura-1.3.1-release.html">Apache Allura 1.3.1 released</a></h3>
+  </div>
+
+  <div class="post-info">
+    Published:
+    <abbr class="published" title="2015-08-10T00:00:00+00:00">
+      Mon 10 August 2015
+    </abbr>
+  </div>
+  <div class="entry-content"> <p>Version 1.3.1 of Allura brings security fixes, new markdown editor, CORS, and more.</p> </div>
+</div>
+
+
+</section>
+
+    <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
+            <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>
+  <!-- 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/3be47b7c/theme/css/style.css
----------------------------------------------------------------------
diff --git a/theme/css/style.css b/theme/css/style.css
index 6a66356..8bd92d9 100644
--- a/theme/css/style.css
+++ b/theme/css/style.css
@@ -159,7 +159,6 @@ blockquote {
 }
 
 ul li {
-    list-style: none;
     margin-left: 1em;
     padding: 10px 0;
 }
@@ -606,6 +605,9 @@ a {
     margin-right: auto;
 }
 
+.pg-index ul li {
+    list-style: none;
+}
 
 .post-info {
     margin: 0 auto;