librs_gemini/templates/index.gmi.tera

23 lines
660 B
Plaintext
Raw Permalink Normal View History

2024-09-29 07:08:53 +00:00
{% extends "_base" %}
{% block content -%}
Index of {{ total_crates_indexed | separate_with_commas }} Rust libraries and applications. Lightweight, opinionated, curated, unofficial alternative to crates.io.
=> /about About
To search for a crate, use the following path:
/search/<term to search>
or if you you want to go directly to a crate info page, use:
/crates/<crate name>
## Categories
{% for category in categories %}
### {{ category.name }}
{{ category.description -}}
{% for crate in category.crates %}
=> /crates/{{ crate }} {{ crate }}
{%- endfor %}
=> /category/{{ category.slug }} {{ category.more_count }} more...
{% endfor -%}
{% endblock %}