I got a joke about sausage....it's the wurst
This website features a dynamic blog system that automatically discovers and displays markdown blog posts from the blog/entries directory.
- The
blog/fetch-entries.jsscript dynamically fetches all markdown files in theblog/entriesdirectory - It parses frontmatter metadata (title, date, author, tags) from each post
- Blog posts are displayed as an expandable list sorted by date (newest first)
-
Create a new markdown file in the
blog/entries/directory -
Add frontmatter metadata at the top of the file:
--- title: "Your Post Title" date: "YYYY-MM-DD" author: "Your Name" tags: ["tag1", "tag2"] --- Your post content here...
-
Run
make buildor./update-blog-list.shto update the blog entries list -
The new post will automatically appear in the blog listing
make dev- Start development server on port 4200make build- Generate blog entries list./update-blog-list.sh- Update blog entries list (alternative to make build)