mirror of
https://codeberg.org/Codeberg/Documentation.git
synced 2026-06-16 05:13:54 -07:00
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## Changed - Update line length limit from 500 characters to 120 characters. ## Fixed - Most instances of these lint issues: 1. Lines longer than 120 characters ([MD013](https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md013.md)). 2. Trailing whitespaces ([MD009](https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md009.md)). 3. Ordered list item prefix ([MD029](https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md029.md)). 4. Bare links ([MD034](https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md034.md)). Co-authored-by: Patrick Schratz <pat-s@noreply.codeberg.org> Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/623 Reviewed-by: Patrick Schratz <pat-s@noreply.codeberg.org> Co-authored-by: Javier Pérez <walpo@noreply.codeberg.org> Co-committed-by: Javier Pérez <walpo@noreply.codeberg.org>
46 lines
1.3 KiB
Markdown
46 lines
1.3 KiB
Markdown
---
|
|
eleventyNavigation:
|
|
key: GettingStarted
|
|
title: Getting Started with Codeberg
|
|
icon: rocket
|
|
order: 10
|
|
description: This article shows you how to get started with Codeberg
|
|
---
|
|
|
|
<img
|
|
src="/images/getting-started/knut.svg"
|
|
style="float: right; width: 150px; border: none; margin-left: 25px; margin-bottom: 25px;"
|
|
alt="Knut the Polar Bear">
|
|
|
|
Hello there!
|
|
|
|
We're glad you're considering to join Codeberg, the <span style="white-space: nowrap;">community-driven</span>
|
|
<span style="white-space: nowrap;">non-profit</span> software development platform.
|
|
|
|
I'm Knut the Polar Bear, and I'm going to guide you through your first steps on Codeberg.
|
|
|
|
You can start with [finding out more about Codeberg](/getting-started/what-is-codeberg) or by jumping right to
|
|
[your first steps on Codeberg](/getting-started/first-steps).
|
|
|
|
Welcome to Codeberg! 😊
|
|
|
|
{% 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 %}
|