]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/blog/modules/list.html
Update Christman campaign copy
[ipfire.org.git] / src / templates / blog / modules / list.html
1 {% for post in posts %}
2 <strong class="mb-0">
3 <a {% if "lightningwirelabs.com" in post.tags %}class="text-lwl"{% end %} href="/post/{{ post.slug }}">{{ post.title }}</a>
4 </strong>
5 <p class="text-muted small">
6 {{ locale.format_date(post.published_at, shorter=True, relative=False) }}
7
8 {% if "lightningwirelabs.com" in post.tags %}
9 <span class="text-lwl">{{ _("by Lightning Wire Labs") }}</span>
10 {% end %}
11 </p>
12 {% end %}