mirror of
https://codeberg.org/Codeberg/Documentation.git
synced 2026-06-16 05:13:54 -07:00
closes #238 Co-authored-by: pat-s <patrick.schratz@gmail.com> Co-authored-by: Patrick Schratz <pat-s@noreply.codeberg.org> Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/377 Co-authored-by: crapStone <crapstone01@gmail.com> Co-committed-by: crapStone <crapstone01@gmail.com>
34 lines
777 B
Markdown
34 lines
777 B
Markdown
---
|
|
eleventyNavigation:
|
|
key: AdvancedUsage
|
|
title: Advanced Usage
|
|
icon: terminal
|
|
order: 65
|
|
---
|
|
|
|
These documentation pages contain tips and tricks for diving more deeply into
|
|
the more advanced features of Codeberg.
|
|
|
|
See also the [documentation of Forgejo](https://forgejo.org/docs/), the software which
|
|
Codeberg is based on.
|
|
|
|
{% assign navPages = collections.all | eleventyNavigation %}
|
|
{%- for entry in navPages %}
|
|
{% if entry.url == page.url %}
|
|
{%- if entry.children.length -%}
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<th> Find out more in this section: </th>
|
|
</thead>
|
|
<tbody>
|
|
{%- for child in entry.children %}
|
|
<tr><td>
|
|
<a href="{{ child.url }}">{{ child.title }}</a>
|
|
</tr></td>
|
|
{%- endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
{% endif %}
|
|
{%- endfor %}
|