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/07/30 00:00:52 UTC

[4/6] allura-site git commit: fixup! [#7938] properly relative URLs; create feeds and archive pages for tags

fixup! [#7938] properly relative URLs; create feeds and archive pages for tags


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

Branch: refs/heads/db/7938
Commit: 9da1b590125145fa227983d16678484e7f222e57
Parents: 86483cd
Author: Dave Brondsema <da...@brondsema.net>
Authored: Wed Jul 29 17:47:46 2015 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Wed Jul 29 17:47:46 2015 -0400

----------------------------------------------------------------------
 _src/allura-theme/static/css/style.css   | 2 +-
 _src/allura-theme/templates/article.html | 7 ++++++-
 2 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura-site/blob/9da1b590/_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 993081f..6a66356 100644
--- a/_src/allura-theme/static/css/style.css
+++ b/_src/allura-theme/static/css/style.css
@@ -594,7 +594,7 @@ a {
 
 }
 
-p > a{
+.bg-white a{
       color: #ff9d00;
 }
 

http://git-wip-us.apache.org/repos/asf/allura-site/blob/9da1b590/_src/allura-theme/templates/article.html
----------------------------------------------------------------------
diff --git a/_src/allura-theme/templates/article.html b/_src/allura-theme/templates/article.html
index 68b8847..302f617 100644
--- a/_src/allura-theme/templates/article.html
+++ b/_src/allura-theme/templates/article.html
@@ -18,11 +18,16 @@
     <h3 class="text-black text-center">{{ article.title }}</h3>
   </div>
 
-  <div class="post-info">
+  <div class="post-info text-center">
     Published:
     <abbr class="published" title="{{ article.date.isoformat() }}">
       {{ article.locale_date }}
     </abbr>
+    <br>
+    Tagged:
+    {% for tag in article.tags %}
+        <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+    {% endfor %}
   </div>
 
   <div class="row">