Back to Blog
Welcome to the Elysium Blog
November 22, 2025
announcement
tutorial
Welcome to the Elysium Blog!
This is your first blog post written in Markdown. You can write this in Obsidian and it will automatically appear on your website.
How It Works
- Write your posts in Obsidian in the
content/blogfolder - Add frontmatter at the top (title, date, excerpt, tags)
- Use standard Markdown syntax
- Your posts automatically appear at
/blog
Markdown Features
You can use all standard Markdown features:
- Bold text
- Italic text
Code snippets- Links: Elysium
Code Blocks
function hello() {
console.log("Hello from Elysium!");
}
Lists
- First item
- Second item
- Third item
Frontmatter
Each post needs frontmatter at the top:
---
title: Your Post Title
date: 2025-11-22
excerpt: A short description of your post
tags: [tag1, tag2]
---
That's it! Happy writing in Obsidian!