blob: f3923bcb37ae8ff72157d5d78e745767341c20b6 (
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_c }}/{{ post.atom_pn }}</a></td>
<td>{{ post.description }}</td>
</tr>
{% endfor %}
</table>
|