mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
index.md: make repository list a table and show available distributions.
This commit is contained in:
parent
2737a8fd82
commit
63cee36bf8
1 changed files with 8 additions and 4 deletions
12
index.md
12
index.md
|
|
@ -33,10 +33,14 @@ Here is a list of different repositories we provide.
|
|||
|
||||
### Repositories
|
||||
|
||||
{% assign repos = site.repos | sort: 'sequence' %}
|
||||
{% for repo in repos %}
|
||||
* [{{ repo.title }}]({{ repo.url | relative_url }}) - {{ repo.description }}
|
||||
{% endfor %}
|
||||
| Name | Distributions | Description |
|
||||
| :--- | :------------ | :---------- |
|
||||
{%- assign repos = site.repos | sort: 'sequence' -%}
|
||||
{%- for repo in repos -%}
|
||||
{%- assign url = repo.url | relative_url -%}
|
||||
{%- assign dists = site.packages | where: 'Repo', repo.slug | group_by: 'Archive' %}
|
||||
| [{{ repo.title }}]({{ url }}) | {% include dist-list.html baseurl=url list=dists %} | {{ repo.description }} |
|
||||
{%- endfor %}
|
||||
|
||||
### Distributions
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue