Example.md
All posts

This is a sample article that demonstrates all the available YAML metadata options for blog posts.
YAML Configuration
This article uses the following YAML configuration in its front matter:
---
title: Example.md # Main title of the article
subtitle: For the example # Subtitle displayed below the title
categories: Example # Category to organize articles
min_read: 1 # Estimated reading time in minutes
author: barrentd # Author name
date: 2025-09-08 # Publication date (YYYY-MM-DD)
thumbnail: https://barrentd.github.io/singlecmdblog/assets/screen.webp # Thumbnail image URL
thumbnail_on_article: true # Display thumbnail in the article
---Field Descriptions:
- title: The main title that appears at the top of the article
- subtitle: An optional descriptive subtitle
- categories: Allows you to classify the article into a category
- min_read: Estimated reading time in minutes
- author: Name of the article author
- date: Publication date in YYYY-MM-DD format
- thumbnail: URL of the thumbnail image associated with the article
- thumbnail_on_article: Boolean to display or hide the thumbnail in the article
Example section
Your markdown content here
// Code example
console.log("Hello, world!");