How To Post

To publish a new article, you will create a standard Jekyll page inside the articles/ directory instead of using _posts/ or a Jekyll collection.

Directory and File Structure

Each article should have its own folder named after the article slug, nested inside its corresponding category folder. Inside this folder, create an index.md (or index.html if you need custom HTML formatting/styles):

articles/<category>/<article-slug>/index.md

Example Structure

For a new article titled “Cambodia’s Digital Future” under the category “governance”, the path is:

articles/governance/cambodias-digital-future-needs-more-than-new-apps/index.md

Front Matter Template

Every article requires front matter metadata at the very beginning of the file. Copy and paste this template:

---
layout: article
title: "Your Article Title"
date: 2026-06-02 09:00:00 +0700
categories: governance
permalink: /governance/cambodias-digital-future-needs-more-than-new-apps/
canonical_url: https://working-draft.org/governance/cambodias-digital-future-needs-more-than-new-apps/
featured: false
summary: "One or two sentence summary of the article."
tags:
  - governance
  - digital-maturity
image: /assets/images/cambodias-digital-future-needs-more-than-new-apps-hero.png
image_alt: "Alternative text description of the hero image for screen readers."
---

Field Explanations

Image Guidelines

All article images must be flat and stored under one of two conventions:

Option A: Flat Assets Directory (Preferred)

Store images under:

assets/images/

Keep the folder flat (do not create subfolders). Name the images using the article slug as a prefix, all lowercase kebab-case:

assets/images/cambodias-digital-future-needs-more-than-new-apps-hero.png
assets/images/cambodias-digital-future-needs-more-than-new-apps-01.png

Option B: Local Article Folder

Store images directly in the article’s own folder (e.g. alongside index.md):

articles/security/salary-day-trojan/virustotal.png

You can reference local images using:

image: /articles/security/salary-day-trojan/virustotal.png

Checklist Before Committing

  1. File Path: The file is at articles/<category>/<slug>/index.md (or index.html).
  2. Metadata: Front matter starts on line 1, begins and ends with ---, and variables are filled.
  3. No Duplicate H1: Do not start the markdown body with a # Title heading. The layout automatically renders the title front matter field as the page’s single <h1>.
  4. URL Consistency: permalink and canonical_url match the category and slug and are completely lowercase.
  5. No Spaces/Special Characters: Ensure slug names and image file names contain only lowercase letters, numbers, and hyphens (no spaces, parentheses, or capitals).