Skip to content

Commit a88fa6f

Browse files
committed
chore: sort by image instead of category; make image come first instead of category.
1 parent 9729cd8 commit a88fa6f

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

scripts/templates/status.mkdocs.j2

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ Explore our collection of high-performance, FreeBSD-native OCI images. All image
1818

1919
## Active Images
2020

21-
| Category | Image | Description | Links | Last Update |
22-
|----------|-------|-------------|-------|:------------:|
23-
{%- for c in active_configs | sort(attribute='category') %}
24-
| **{{ c.category }}** | [{{ c.icon }} **{{ c.title }}**]({{ c.name }}.md) | {{ c.description }} | [:simple-github:]({{ c.repo_url }}){target=_blank} {% if c.upstream_url %} · [:material-link-variant:]({{ c.upstream_url }}){target=_blank}{% endif %} | [{{ c.last_update }}]({{ c.repo_url }}/commits){target=_blank} |
21+
| Image | Category | Description | Links | Last Update |
22+
|-------|----------|-------------|-------|:------------:|
23+
{%- for c in active_configs | sort(attribute='title') %}
24+
| [{{ c.icon }} **{{ c.title }}**]({{ c.name }}.md) | **{{ c.category }}** | {{ c.description }} | [:simple-github:]({{ c.repo_url }}){target=_blank} {% if c.upstream_url %} · [:material-link-variant:]({{ c.upstream_url }}){target=_blank}{% endif %} | [{{ c.last_update }}]({{ c.repo_url }}/commits){target=_blank} |
2525
{%- endfor %}
2626

2727
{% if deprecated_configs %}
2828
## Deprecated Images
2929

3030
The following images are no longer actively maintained.
3131

32-
| Category | Image | Description | Links | Last Update |
33-
|----------|-------|-------------|-------|:------------:|
34-
{%- for c in deprecated_configs | sort(attribute='category') %}
35-
| **{{ c.category }}** | [{{ c.icon }} **{{ c.title }}**]({{ c.name }}.md) [![](https://img.shields.io/badge/status-deprecated-orange)]({{ c.name }}.md) | {{ c.description }}<br> :material-information-outline: **Deprecated**: {{ c.deprecated.reason }}{% if c.deprecated.replacement %} Use [{{ c.deprecated.replacement }}]({{ c.deprecated.replacement }}.md).{% endif %} | [:simple-github:]({{ c.repo_url }}){target=_blank} {% if c.upstream_url %} · [:material-link-variant:]({{ c.upstream_url }}){target=_blank}{% endif %} | [{{ c.last_update }}]({{ c.repo_url }}/commits){target=_blank} |
32+
| Image | Category | Description | Links | Last Update |
33+
|-------|----------|-------------|-------|:------------:|
34+
{%- for c in deprecated_configs | sort(attribute='title') %}
35+
| [{{ c.icon }} **{{ c.title }}**]({{ c.name }}.md) [![](https://img.shields.io/badge/status-deprecated-orange)]({{ c.name }}.md) | **{{ c.category }}** | {{ c.description }}<br> :material-information-outline: **Deprecated**: {{ c.deprecated.reason }}{% if c.deprecated.replacement %} Use [{{ c.deprecated.replacement }}]({{ c.deprecated.replacement }}.md).{% endif %} | [:simple-github:]({{ c.repo_url }}){target=_blank} {% if c.upstream_url %} · [:material-link-variant:]({{ c.upstream_url }}){target=_blank}{% endif %} | [{{ c.last_update }}]({{ c.repo_url }}/commits){target=_blank} |
3636
{%- endfor %}
3737
{% endif %}
3838

0 commit comments

Comments
 (0)