website/themes/lightspeed/templates/macros.html

8 lines
260 B
HTML
Raw Normal View History

2021-11-15 19:46:47 +00:00
{% macro post_in_list(post) %}
<li>
<a href="{{ post.permalink | safe }}">{{ post.title }}</a>
<time style="font-size:90%;" datetime="{{ post.date | date(format="%+") }}">{{ post.date | date(format="%B %d, %Y") }}</time>
</li>
{% endmacro post_in_list %}