Blog: add posts date, author and nicer category visualization

for 'All Posts' and tagged categories
This commit is contained in:
erciccione 2020-02-24 17:20:06 +01:00
parent dfbe0c02ba
commit fda7401e05
No known key found for this signature in database
GPG Key ID: 762AF8C608E56CDF
3 changed files with 8 additions and 3 deletions

View File

@ -680,7 +680,6 @@ blog:
title_1: All
title_2: Blog
title_3: Posts
tagged: Tagged under
author: Posted by
date: Posted at
forum: Click here to join the discussion for this entry on the Monero Forum

View File

@ -28,6 +28,10 @@ layout: custom
<p>
{{ post.summary }}
</p>
<p><small>
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}
</small>
</p>
</div>
{% endfor %}
{% else %}

View File

@ -16,9 +16,11 @@ title: titles.allposts
{{ post.summary }}
</p>
<p>
<small>{% t blog.tagged %}:
<small>
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}<br>
Category:
{% for tag in post.tags %}
<a href="/blog/tags/{{ tag }}.html">[{{ tag }}]</a>
<a href="/blog/tags/{{ tag }}.html">{{ tag }}</a>
{% endfor %}
</small>
</p>