28 lines
961 B
Markdown
28 lines
961 B
Markdown
|
# Tildes Wiki Sitemap
|
||
|
|
||
|
This page is a temporary placeholder to help wiki contributors navigate. Find this page easily by bookmarking it!
|
||
|
|
||
|
<details>
|
||
|
<summary>Generating this page</summary>
|
||
|
|
||
|
The sitemap can be automatically generated by [tildes-wiki-sitemap](https://git.bauke.xyz/Bauke/tildes-wiki-sitemap).
|
||
|
|
||
|
If this page is outdated and you can't update it yourself, feel free to [message @Bauke](https://tildes.net/user/Bauke/new_message?subject=Tildes%20Wiki%20Sitemap&message=Update%20the%20sitemap%20you%20doofus!).
|
||
|
</details>
|
||
|
|
||
|
{% for group in groups %}
|
||
|
## {{ group.name }}
|
||
|
|
||
|
{% if let Some(description) = group.description -%}
|
||
|
> **{{ description }}**
|
||
|
{%- endif %}
|
||
|
|
||
|
{% if group.wiki_links.is_empty() -%}
|
||
|
There are no wiki pages for {{ group.name }} yet, [click here](https://tildes.net/{{ group.name }}/wiki/new_page) if you want to create one.
|
||
|
{%- endif %}
|
||
|
|
||
|
{% for link in group.wiki_links -%}
|
||
|
* [{{ link.name }}]({{ link.url }})
|
||
|
{% endfor -%}
|
||
|
{% endfor %}
|