https://github.com/bitcryptic-gw/bitcryptic-blog-content
https://github.com/bitcryptic-gw/bitcryptic-blog-content
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/bitcryptic-gw/bitcryptic-blog-content
- Owner: bitcryptic-gw
- License: other
- Created: 2026-04-22T10:59:10.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-10T12:45:27.000Z (20 days ago)
- Last Synced: 2026-06-10T14:18:13.010Z (20 days ago)
- Size: 44.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitcryptic-blog-content
Markdown content source for [blog.bitcryptic.com](https://blog.bitcryptic.com).
This repo is the source of truth for all blog posts. The Astro app at
[bitcryptic-gw/bitcryptic-blog](https://github.com/bitcryptic-gw/bitcryptic-blog)
mounts this directory at runtime and serves posts directly.
## Frontmatter schema
```yaml
---
title: "Post title"
slug: "url-slug" # used as the URL path: /blog/{slug}
date: 2026-01-01 # publication date
updated: 2026-01-02 # optional, last updated date
author: "BitCryptic" # defaults to BitCryptic if omitted
tags: ["tag1", "tag2"] # optional
description: "..." # required, used in index, RSS, and og:description
status: draft | published # only published posts are served
---
```
## Adding a post
1. Create a new `.md` file in the repo root
2. Add frontmatter matching the schema above
3. Write content in standard markdown
4. Set `status: published` when ready to go live
5. Commit and push — the live site picks it up automatically