c1af1ac8b5
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
14 lines
526 B
HTML
14 lines
526 B
HTML
<article class="post">
|
|
<span class="date">{{ post.date | date: "%Y-%m-%d" }}</span>
|
|
<div>
|
|
<a class="title" href="{{ post.url }}">{{ post.title }}</a>
|
|
<small>
|
|
{% if post.favorite %} <a href="/blog/tags#⭐" style="text-decoration:none">⭐</a> {% endif %}
|
|
<span class="tags hidden-mobile">
|
|
{% for tag in post.tags %}
|
|
<a href="/blog/tags#{{tag}}">#{{tag}}</a>
|
|
{% endfor %}
|
|
</span>
|
|
</small>
|
|
</div>
|
|
</article>
|