]> git.ipfire.org Git - thirdparty/systemd.git/blame - docs/index.md
docs: beef up entrypoint documentation page
[thirdparty/systemd.git] / docs / index.md
CommitLineData
c3e270f4
FB
1---
2title: systemd Documentation
3---
4
0bc7a22d
LP
5# systemd Documentation
6
5d3f5e40
LP
7{% assign by_category = site.pages | group_by:"category" %}
8{% assign extra_pages = site.data.extra_pages | group_by:"category" %}
9{% assign merged = by_category | concat: extra_pages | sort:"name" %}
10
11{% for pair in merged %}
12 {% if pair.name != "" %}
13## {{ pair.name }}
14{% assign sorted = pair.items | sort:"title" %}{% for page in sorted %}
15* [{{ page.title }}]({{ page.url | relative_url }}){% endfor %}
357211a4
FB
16 {% endif %}
17{% endfor %}