2018-08-09 06:53:47 +00:00
|
|
|
{% macro postlisting(posts) %}
|
|
|
|
<table style="width: 100%;">
|
|
|
|
{% for post in posts %}
|
|
|
|
{% if not post.draft %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<span style="font-size: 1.2em;">
|
|
|
|
<a href="{{ post.permalink }}" class="brand-colorlink">{{ post.title }}</a>
|
|
|
|
</span>
|
|
|
|
<br />
|
|
|
|
<small>
|
2018-09-22 08:17:41 +00:00
|
|
|
{{ post.reading_time }} min - Posted {% if post.extra.author %}by {{ post.extra.author }}{% endif %}
|
2018-08-09 06:53:47 +00:00
|
|
|
on {{ post.date }}
|
|
|
|
</small>
|
|
|
|
</td>
|
|
|
|
{% if post.tags %}
|
|
|
|
<td style="text-align: right;" class="hidden-sm">
|
|
|
|
<small>{{ post.tags | join(sep=", ") }}</small>
|
|
|
|
</td>
|
|
|
|
{% endif %}
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<p style="text-align: center;">
|
|
|
|
<small><a href="/rss.xml">click here for RSS feed</a></small>
|
|
|
|
</p>
|
|
|
|
{% endmacro postlisting %}
|