Obsidian Vault Organization#

This is your Obsidian vault for blog content. Open this folder in Obsidian to get started!

Folder Structure#

blog/
├── essays/          # Long-form, polished technical writing
├── thoughts/        # Short-form observations and quick ideas
├── drafts/          # Work-in-progress (won't be published)
└── .obsidian/       # Obsidian configuration

Content Types#

Essays (type: essay)#

Template:

---
title: "Your Essay Title"
description: "A brief summary (1-2 sentences)"
date: "2025-11-21"
type: essay
tags: ["research", "AI"]
draft: false
---

Your content here...

Thoughts (type: thought)#

Template:

---
title: "Brief Title"
description: "One sentence summary"
date: "2025-11-21"
type: thought
tags: ["idea"]
draft: false
---

Your quick thought here...

Drafts#

Writing Workflow#

  1. Start dev server: Run make dev from project root
  2. Write in Obsidian: Your browser will be at http://localhost:8000
  3. Save and refresh: Site auto-rebuilds, just refresh browser
  4. Publish: Commit and push when ready

Using Templates#

Obsidian templates are in the templates/ folder:

To use:

  1. Enable Templates plugin in Obsidian (Settings → Core plugins)
  2. Set template folder to templates (Settings → Templates → Template folder location)
  3. Press Cmd/Ctrl+T to insert a template

Manual Build#

  1. Create a new note in essays/ or thoughts/
  2. Add frontmatter with type, title, date, etc.
  3. Write using markdown with all Obsidian features:
    • [[wiki-links]] to other notes
    • [^sidenote: Margin notes!] for commentary
    • Code blocks, tables, images, etc.
  4. Build: make build from the project root
  5. Publish: Commit and push to GitHub

Obsidian Features#

Tips#


← Back to home