mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
19 lines
517 B
HTML
19 lines
517 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% assign id = page.slug %}
|
|
{% assign dists = site.packages | where: 'repo', id | group_by: 'distribution' %}
|
|
|
|
<h2>{{ page.title }} repository</h2>
|
|
|
|
{% include setup-instructions.html repo=id domain=page.domain %}
|
|
|
|
<h2>Choose your ubuntu version below</h2>
|
|
|
|
<ul>
|
|
{% for dist in dists %}
|
|
{% assign info = site.data.dists[dist.name] %}
|
|
<li><a href="{{ page.url | relative_url }}/{{ dist.name }}">{{ dist.name }} {{ info.version }}</a> - {{ dist.items.size }} Packages</li>
|
|
{% endfor %}
|
|
</ul>
|