What is this?
This is a community knowledge base built with Astro. It’s a place to capture guides, how-tos, and reference material for your team or community of practice.
How to contribute
- Add a new
.mdfile tosrc/content/articles/ - Include front matter with
title,description, andtags - Write your content in Markdown
- Open a pull request
Front matter reference
---
title: My Article Title
description: A short summary shown on the index page.
tags: [getting-started, how-to]
difficulty: beginner # beginner | intermediate | advanced
standalone: false # true = hidden from index/tags/search
---
Callout syntax
Use HTML <div> callouts in your markdown:
<div class="callout callout--note">
<span class="callout-icon">ℹ️</span>
<div class="callout-body">This is a note.</div>
</div>
Available variants: callout--note, callout--tip, callout--warn, callout--danger, callout--quote.
License
This template is MIT licensed. See LICENSE in the repository root.