Documentation/content/getting-started/index.md
Gusted 03342e98ec feat: use Eleventy's image plugin for image transformation (#488)
Use https://www.11ty.dev/docs/plugins/image/ to transform images on build time to avif, webp and jpeg.

Images are moved to `/content/images`.

`<picture>` is no longer needed, the plugin does this automatically.

Remove webp images from the source.

Resolves #152
Resolves #368

Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/488
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-committed-by: Gusted <postmaster@gusted.xyz>
2024-11-29 06:12:05 +00:00

1.3 KiB

eleventyNavigation description
key title icon order
GettingStarted Getting Started with Codeberg rocket 10
This article shows you how to get started with Codeberg
Knut the Polar Bear

Hello there!

We're glad you're considering to join Codeberg, the community-driven non-profit 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 or by jumping right to your first steps on Codeberg.

Welcome to Codeberg! 😊

{% assign navPages = collections.all | eleventyNavigation %} {%- for entry in navPages %} {% if entry.url == page.url %} {%- if entry.children.length -%}

{%- for child in entry.children %} {%- endfor %}
Find out more in this section:
{{ child.title }}
{% endif %} {% endif %} {%- endfor %}