mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 16:28:19 +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_1: All
|
||||||
title_2: Blog
|
title_2: Blog
|
||||||
title_3: Posts
|
title_3: Posts
|
||||||
tagged: Tagged under
|
|
||||||
author: Posted by
|
author: Posted by
|
||||||
date: Posted at
|
date: Posted at
|
||||||
forum: Click here to join the discussion for this entry on the Monero Forum
|
forum: Click here to join the discussion for this entry on the Monero Forum
|
||||||
|
|
|
@ -28,6 +28,10 @@ layout: custom
|
||||||
<p>
|
<p>
|
||||||
{{ post.summary }}
|
{{ post.summary }}
|
||||||
</p>
|
</p>
|
||||||
|
<p><small>
|
||||||
|
{% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}
|
||||||
|
</small>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
@ -16,9 +16,11 @@ title: titles.allposts
|
||||||
{{ post.summary }}
|
{{ post.summary }}
|
||||||
</p>
|
</p>
|
||||||
<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 %}
|
{% for tag in post.tags %}
|
||||||
<a href="/blog/tags/{{ tag }}.html">[{{ tag }}]</a>
|
<a href="/blog/tags/{{ tag }}.html">{{ tag }}</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</small>
|
</small>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in a new issue