-
Notifications
You must be signed in to change notification settings - Fork 0
Adding News
Alexander Refsum Jensenius edited this page Jun 21, 2026
·
3 revisions
News posts are stored as Markdown files in site/_news/. Each file becomes a page at /news/{slug}/.
site/_news/YYYY-MM-DD-short-slug.md
Example: site/_news/2026-04-09-opening.md → /news/2026-04-09-opening/
---
title: "MishMash Centre officially opens"
date: 2026-04-09 # Required — publication date (YYYY-MM-DD)
author: "Alexander Refsum Jensenius" # Optional — author name
layout: default # Use default or page
categories: [Announcement] # News category
description: "Short summary shown in listings and meta tags."
image: /assets/images/bubbles/mishmash_bubbles_notext.svg # Optional — featured image
---Common categories used: Announcement, Vacancy, Publication, Press
Write the news content in Markdown below the frontmatter. You can use standard Markdown: headings, bold, links, images, lists.
- The front page shows the latest items via
_includes/news_front_page.html - All news is listed at
/news/ - News is included in the search index
- An RSS/Atom feed is generated at
/news/feed.xml