same base for all, removed teaser image from top of articles removed boolean flag

This commit is contained in:
2025-08-30 17:36:29 +02:00
parent 452ca1770c
commit d642d8be98
40 changed files with 207 additions and 223 deletions

View File

@@ -42,21 +42,16 @@ Each `.mdx` file must contain a YAML frontmatter block at the top. Here are the
- `title` (string, required): The title of the post.
- `tags` (string[], optional): A list of relevant tags.
- `teaser` (string, required): A short, one-sentence summary of the content.
- `header` (object, optional): Used to specify a header image.
- `teaser` (string): Path to the teaser image (e.g., `/figures/my-image.png`).
- `show_teaser` (boolean, optional): If `false`, the teaser image will not be displayed on the post's page.
- `excerpt` (string, required): A short, one-sentence summary of the content.
- `teaser` (string): Path to the teaser image (e.g., `/figures/my-image.png`).
**Example Frontmatter:**
```yaml
---
title: "MAS Emergence Safety"
tags: [multi-agent-systems, MARL, safety]
teaser: "Formalized MAS emergence misalignment; proposed safety mitigation strategies."
header:
teaser: "/figures/21_coins_teaser.png"
show_teaser: false
excerpt: "Formalized MAS emergence misalignment; proposed safety mitigation strategies."
teaser: "/figures/21_coins_teaser.png"
---
```