blob: 5f8d8180a09441a14a8930b73f44f4a66e1041cd (
plain)
1
2
3
4
5
6
7
8
|
<table class="table table-striped frontpage-table">
{% for post in site.data.wiki.updates limit:5 %}
<tr>
<td class="frontpage-table-wiki-title"><a href="{{ post.uri }}" rel="nofollow">{{ post.title }}</a></td>
<td>started by {{ post.author }}</td>
</tr>
{% endfor %}
</table>
|