blob: adf87f951e832f90fdbc5fd7f369b98b5bf8e934 (
plain)
1
2
3
4
5
6
7
8
|
<table class="table table-striped frontpage-table">
{% for post in site.data.packages.updates limit:5 %}
<tr>
<td class="frontpage-table-package-atom"><a href="{{ post.uri }}">{{ post.atom }}</a></td>
<td>{{ post.description }}</td>
</tr>
{% endfor %}
</table>
|