jorge/commands/initfiles/includes/post_preview.html

15 lines
550 B
HTML
Raw Normal View History

<article class="post">
<span class="date">{{ post.date | date: "%Y-%m-%d" }}</span>
<div>
<a class="title" href="{{ post.external | default: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>