]> jfr.im git - irc/freenode/web-7.0.git/blobdiff - templates/artinfo.html
Merge branch 'master' into fix-headings
[irc/freenode/web-7.0.git] / templates / artinfo.html
index 4a66a9baea6e5e18a161d35c6ab388a7707bdcac..31a2d41ea60b3ae1c869bd9c3f886370fd7f7d99 100644 (file)
@@ -6,14 +6,14 @@
 {% macro nav(article) %}
 <div class="art-nav">
     {% if article.older -%}
-    <a href="{{ article.older.url }}">previous article</a>
+    <span><a href="{{ article.older.url }}">previous article</a><span class="invisible">, </span></span>
     {%- else -%}
     <span></span>
     {%- endif -%}
-    <a href="{{ url_for("archive") }}">view archive</a>
-    {%- if article.newer %}
-    <a href="{{ article.newer.url }}">next article</a>
-    {%- else %}
+    <span><a href="{{ url_for("archive") }}">all</a></span>
+    {%- if article.newer -%}
+    <span><span class="invisible">, </span><a href="{{ article.newer.url }}">next article</a></span>
+    {%- else -%}
     <span></span>
     {%- endif %}
 </div>