2020-08-13 03:29:36 -07:00
|
|
|
---
|
|
|
|
|
eleventyNavigation:
|
|
|
|
|
key: Security
|
|
|
|
|
title: Security
|
|
|
|
|
icon: lock
|
|
|
|
|
order: 50
|
|
|
|
|
---
|
|
|
|
|
|
2023-07-08 09:27:44 -07:00
|
|
|
This section contains information on how to securely use Codeberg.
|
|
|
|
|
|
|
|
|
|
{% 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-06-11 00:51:22 -07:00
|
|
|
{%- endfor %}
|