The CookieBytes landing page plus "The Cookie Jar" blog, as a Jekyll site.
bundle install
bundle exec jekyll serve
# → http://localhost:4000Create _posts/YYYY-MM-DD-slug.md:
---
layout: post
title: Your title
description: One-sentence excerpt shown on the listing page.
category: tech # studio | tech | crew (controls tag + accent colors)
emoji: 🍪 # big faded emoji on the listing card
read_time: 5 min read
lede: Intro paragraph shown under the title.
author_emoji: 🍪
author_note: Line shown in the author box at the bottom.
---
Markdown content here.That's it — the listing at /blog/ updates automatically. Posts get URLs like /blog/your-title/.
Optional flourishes inside posts:
<div class="callout">💡 Highlighted tip box (colored per category).</div>
<div class="divider">🍪 🍪 🍪</div>_layouts/default.html— head, nav, footer (shared by everything)_layouts/post.html— article page (meta, lede, author box)_includes/— nav, footer, cookie logo SVGassets/css/—shared.css(tokens/nav/footer),home.css,blog.cssindex.html— landing pageblog/index.html— post listing_posts/— the posts
Any static host works with the _site/ output of bundle exec jekyll build.
For GitHub Pages, push the repo and enable Pages — or swap the Gemfile to the
github-pages gem (commented line) for exact version parity.
Note: the contact form still needs a Web3Forms access key in index.html
(YOUR_ACCESS_KEY_HERE).