Untitled
Blog Posts
This directory contains all blog posts for the Arc Raiders Database website.
Adding a New Blog Post
- Create a new
.mdfile in this directory (e.g.,my-new-post.md) - Add frontmatter at the top of the file with the following fields:
---
title: "Your Post Title"
date: "2024-01-15"
description: "A brief description of your post"
author: "Your Name" (optional)
---
Your blog post content goes here...
- Use standard Markdown syntax for formatting
- The file name (without
.md) will become the URL slug (e.g.,my-new-post.md→/blog/my-new-post)
Frontmatter Fields
- title (required): The title of your blog post
- date (required): Publication date in YYYY-MM-DD format
- description (required): A brief description/summary of the post
- author (optional): Author name
Markdown Features
The blog supports GitHub Flavored Markdown, including:
- Headers (#, ##, ###)
- Bold and italic text
- Lists (ordered and unordered)
- Links
- Code blocks (inline and block)
- Blockquotes
- Horizontal rules
Example Post
See welcome-to-arc-raiders-database.md for an example of a complete blog post.