fixup! [#7938] properly relative URLs; create feeds and archive pages for tags
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 @@
}
-p > a{
+.bg-white a{
color: #ff9d00;
}
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">