2020-09-01 05:20:15 -07:00
|
|
|
---
|
|
|
|
|
eleventyNavigation:
|
|
|
|
|
key: Integrations
|
|
|
|
|
title: Integrations with Other Services
|
|
|
|
|
icon: puzzle-piece
|
|
|
|
|
order: 70
|
|
|
|
|
---
|
|
|
|
|
|
2020-09-03 03:01:19 -07:00
|
|
|
These documentation pages contain information on how you can use third-party software with Codeberg.
|
|
|
|
|
|
2025-06-14 02:38:21 -07:00
|
|
|
Check out [delightful-forgejo](https://codeberg.org/forgejo-contrib/delightful-forgejo) to learn about the awesome
|
|
|
|
|
ecosystem of Forgejo instances.
|
|
|
|
|
Can can also see [awesome-gitea](https://gitea.com/gitea/awesome-gitea/src/README.md), most of the Gitea-specific
|
|
|
|
|
solutions should work with our Forgejo instance, too.
|
2023-07-08 09:27:44 -07:00
|
|
|
|
|
|
|
|
{% assign navPages = collections.all | eleventyNavigation %}
|
|
|
|
|
{%- for entry in navPages %}
|
|
|
|
|
{% if entry.url == page.url %}
|
|
|
|
|
{%- if entry.children.length -%}
|
2024-06-11 00:51:22 -07:00
|
|
|
|
2023-07-08 09:27:44 -07:00
|
|
|
<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 %}
|
2024-02-17 14:04:10 -08:00
|
|
|
{%- endfor %}
|