mono/plain; a11y=true

An accessible, monospace plain Zola Theme

Formatter

Created:

Post Permalink

Author:
Simon Gattner

Introduction

With Front Matter, Zola allows you to define metadata for your content pages. This metadata can be used to control how the page is rendered, how it appears in search results, and how it is included in sitemaps and feeds.

Next to commonly used fields like title, description, date, and authors, the Theme Monoplain also supports additional fields for images, hero images, and feedback email configuration.

Common Front Matter Fields

For a standard post, the following front matter fields are commonly used:

+++
title = "Page Title"
description = "Page description for meta tags and RSS"
date = 2026-01-01
authors = ["Author Name"]

[taxonomies]
tags = ["tag1", "tag2", "tag3"]

[extra]
images = ["image1.jpg", "image2.jpg"]
hero_img = "hero.jpg"
hero_alt = "Description of hero image"
hero_copy = "Copyright notice"
+++
FieldTypeDescription
titlestringPage title, used in headings and meta tags
descriptionstringPage description for meta tags and RSS
datedatePublication date (YYYY-MM-DD)
authorsarray of stringsList of authors
tagsarray of stringsTags for the page (most commonly used taxonomy)
imagesarray of stringsList of images for the page that are also displayed in the gallery
hero_imgstringPath to hero image for post header
hero_altstringAlt text for hero image
hero_copystringCopyright/attribution text for hero image

More Uncommon Front Matter Fields

+++
# Show the update date next to the creation date in the post header and feed
updated = 2026-07-31
# Draft and rendering
#  if true, page won't be rendered in production builds
#   but still available in dev server or preview deployments
draft = true

[extra]
# Open Graph and preview
preview_img = "preview.jpg"
preview_image = "preview.jpg"

# Language
lang = "de"

# Feedback configuration overwrite of config.toml
feedback_email_enabled = true
feedback_email_address = { local_part = "name", domain_name = "example", tld = "com" }
feedback_email_address_wildcard = true
feedback_email_address_wildcard_postfix = ".monoplain"
+++
FieldTypeDescription
updateddateLast updated date (YYYY-MM-DD)
draftbooleanIf true, page won't be rendered
preview_imgstringPath to preview image for Open Graph
preview_imagestringAlternative spelling for preview image
langstringLanguage code for content (adds lang attribute)
feedback_email_enabledbooleanEnables feedback email link
feedback_email_addresstableConfiguration for feedback email address
feedback_email_address_wildcardbooleanEnables wildcard email addresses
feedback_email_address_wildcard_postfixstringPostfix for wildcard email addresses

Visibility in Search, Sitemap and Feed

+++
in_search_index = false

[extra]
ignore_sitemap = true
ignore_feed = true
robots_noindex = true
+++
FieldTypeDescription
in_search_indexbooleanIf false, excludes page from search index
ignore_sitemapbooleanIf true, excludes page from sitemap
ignore_feedbooleanIf true, excludes page from RSS feed

All Zola-Supported Front Matter Fields

Complete reference of all front matter fields supported by Zola as documented at https://www.getzola.org/documentation/content/page/

Feedback

Have thoughts or experiences you'd like to share? I'd love to hear from you! Whether you agree, disagree, or have a different perspective, your feedback is always welcome. Drop me an email and let's start a conversation.

<​​​​formatter.monoplain​​​@0x38​.​​de​​​>

Tags