blob: db7f8a5645fa18f25cad14fa741a971db3cb50fe (
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 }}" title="{{ post.atom }}">{{ post.atom_p }}</a></td>
<td>{{ post.description }}</td>
</tr>
{% endfor %}
</table>
|