Your Post Title Here
Your Post Title
Write your blog post content here using standard Markdown.
How to Publish a Blog Post
-
Create your post file in
priv/blog/posts/with a descriptive filename -
Add your cover image to
priv/static/images/blog/ -
Fill in the frontmatter (the YAML between the
---markers above):-
title: The display title of your post -
slug: URL-friendly identifier (e.g.,my-awesome-post) -
date: Publication date inYYYY-MM-DDformat -
author: Your name or team name -
author_link: (optional) Link to author’s profile (e.g., X/Twitter) -
cover_image: Path to cover image (e.g.,/images/blog/my-cover.png) -
cover_alt: Alt text for the cover image -
excerpt: Short summary for the blog listing page -
published: Set tofalsewhile drafting,truewhen ready to publish
-
-
Write your content below the frontmatter using Markdown
-
Preview locally by running the dev server
-
Publish by setting
published: trueand deploying
Markdown Tips
-
Use
##for section headings -
Use
**bold**and*italic*for emphasis - Use triple backticks for code blocks with language highlighting
-
Use
[link text](url)for links -
Use
for images
Notes
-
Posts with
published: falseare only visible in development - Posts are sorted by date (newest first)
- The slug must be unique across all posts