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

  1. Write your posts in Obsidian in the content/blog folder
  2. Add frontmatter at the top (title, date, excerpt, tags)
  3. Use standard Markdown syntax
  4. 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

  1. First item
  2. Second item
  3. 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!