mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 08:18:03 +00:00
Merge !1228
Blog: add posts date, author and nicer category visualization See merge request monero-project/monero-site!1228
This commit is contained in:
commit
6c1c7f7159
3 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue