This repository is the canonical source for the Radius Red public web site, tech docs and blog.
When adding or updating blog articles, do it in this repository.
Every post requires valid front matter at the top of the file:
---
layout: default
author: Your Name
title: Post title goes here
date: YYYY-MM-DD
description: One-sentence summary, used in feed and listings
tags: [tag1, tag2, tag3]
---layout: Required. Set todefaultfor all posts.author: Required. Author name displayed in the post byline.title: Required. Displayed as the post heading and in listings.date: Required. Sets publication order and controls visibility (see Build Visibility Controls below).description: Required. Used in feed summaries and on the blog homepage.tags: Optional. Comma-separated list of topic tags.
Posts should contain article content without:
- No post title. The template renders the title from front matter
titlefield. - No byline or date. The template renders publication metadata from front matter.
- No license footer. The template appends the Apache 2.0 license footer automatically.
Start your content with the first paragraph or section heading (## level 2 or deeper).
Example structure:
---
layout: default
author: Wordy
title: Why we chose Dukascopy for market data
date: 2026-04-30
description: Technical decision on data provider selection for tradedesk.
tags: [tradedesk, data, architecture]
---
## The Challenge
Systematic trading requires high-fidelity market data...
## Why Dukascopy
We evaluated three providers...- Create posts in
docs/blog/posts/and must include a valid front matterdate. - The site build will handle future dated posts and ensure they do not appear until the publish date.
- Public-facing content in this repository must not reference internal systems, internal issue trackers, private repository paths, or non-public workflow tools. In practice, do not link to
RAD-*issues, private repos, or internal orchestration platforms from site copy.
uv sync && uv run zensical serveshould create a local site on localhost:8000