• Scholarly
  • Creative
  • Natural
  • Precision
  • Collective

Page-level Configuration Reference

This page documents the [extra] front-matter keys Tapestry reads on individual pages (e.g. content/about.md, a blog post). These override their site-level equivalents where noted. For Zola's own standard front matter (title, description, date, updated, authors, draft, weight, slug, path, template, insert_anchor_links, [taxonomies], and so on), see Standard Zola front matter at the bottom of this page.

+++
title = "My Page"
# [extra]
# sidebar = "sidebar-snippet.md"   # custom content
# sidebar = false                  # force off
+++

The single-article template's columns 9–12 sidebar region is content-driven, not unconditionally reserved:

stylesheets

+++
[extra]
stylesheets = ["css/one-off-page-style.css"]
+++

Additive with the site- and section-level stylesheets — see site-configuration.md. All three levels' stylesheets are linked together, not just the most specific one.

katex

+++
[extra]
katex = true
+++

Overrides the site- and section-level katex setting for this page only — see site-configuration.md for the full precedence chain. An explicit true/false here always wins over whatever is set at the section or site level.

social_media_image

+++
[extra.social_media_image]
path = "share-card.png"
alt_text = "A diagram of the proposed architecture."
+++

Quick reference

KeyTypeDefaultNotes
sidebarstring | boolauto (TOC if ≥2 headings)Custom snippet path, or false to force off.
stylesheetsarray of paths[]Additive with section/site level.
katexboolinheritedOverrides section/site level for this page.
social_media_image.pathpathunsetColocated image, resized to 1200×675 for og:image.
social_media_image.alt_textstringunsetog:image:alt.
copy_buttonboolInert (terminus leftover).

Standard Zola front matter

Keys like title, description, date, updated, authors, draft, weight, slug, path, template, insert_anchor_links, and [taxonomies] are standard Zola front matter, not Tapestry-specific — see Zola's own page content documentation for the full reference.