Release Date: January 30, 2025
Version: 0.7.0
Type: Minor Release (New Features)
Version 0.7.0 introduces a comprehensive redesign of the blog and news architecture for the Zer0-Mistakes Jekyll theme. This release transforms the blog system into a full-featured news platform with category archives, tag browsing, author profiles, and modern card-based layouts.
category.html)tag.html)blog.html)The blog layout has been completely transformed into a professional news homepage:
journals.html)Individual blog posts now feature:
post-card.html)Reusable card component with configurable options:
author-card.html)Author profile component with:
_data/authors.yml)default:
name: "Author Name"
avatar: "/path/to/avatar.jpg"
bio: "Author biography"
role: "Author role"
social:
github: "username"
twitter: "username"
_data/navigation/posts.yml)Updated with six main categories:
/tags/): Complete tag listing with posts grouped by tag/posts/development//posts/technology//posts/tutorial//posts/world//posts/business//posts/science/Four new demo posts showcasing the blog features:
Resolved “Nesting too deep” Liquid errors by:
where_exp to exclude index pagesdefer attribute to non-critical scriptsAdd the following front matter fields for best display:
---
author: default # or specific author key from authors.yml
featured: true # for featured post highlighting
breaking: true # for breaking news badge
estimated_reading_time: "5 min"
image: /path/to/image.jpg # for card display
---
Create category index pages using the new category layout:
---
layout: category
title: "Category Name"
category: category-slug
description: "Category description"
permalink: /posts/category-slug/
---
_layouts/category.html_layouts/tag.html_includes/components/post-card.html_includes/components/author-card.html_data/authors.ymlpages/tags.mdpages/posts/*/index.md (6 category pages)pages/_posts/2025-01-*.md (4 sample posts)_layouts/blog.html (complete rewrite)_layouts/journals.html (major enhancement)_data/navigation/posts.yml_includes/navigation/sidebar-folders.html_includes/core/branding.html_includes/core/head.html_includes/components/js-cdn.htmlThis release was developed with assistance from GitHub Copilot, following the Zer0-Mistakes contribution guidelines and coding standards.