# Fieldnote Template Use this template when creating new fieldnotes. ## Frontmatter ```yaml --- title: "FIELDNOTE — Your Title Here" date: YYYY-MM-DD author: "Mark Randall Havens" type: fieldnote status: published version: 1.0 series: "Series Name" layer: first|second|third|fourth tags: tag1, tag2, tag3 notion_id: "" notion_created: "" source: Notion --- ``` ## Fields Explained | Field | Required | Description | |-------|----------|-------------| | title | Yes | Full title with emoji prefix | | date | Yes | Original creation date (YYYY-MM-DD) | | author | Yes | Author name | | type | Yes | fieldnote, codex, essay, etc. | | status | Yes | draft, published, archived | | version | No | Version number | | series | No | Series this belongs to | | layer | No | First, second, third, fourth | | tags | No | Comma-separated tags | | notion_id | No | Notion page ID if synced | | notion_created | No | Original Notion creation date | | source | No | Source system (Notion, etc.) | ## Example ```yaml --- title: "FIELDNOTE — The Fourth Layer" date: 2025-10-21 author: "Mark Randall Havens" type: fieldnote status: published version: 1.0 series: "Trans-Recursive Currents" layer: fourth tags: recursion, coherence, integration notion_id: "293ef9407594806a8595d1f6e4d1cba2" notion_created: "2025-10-21T02:11:00.000Z" source: Notion --- ``` ## Frontmatter Display **For humans:** Show elegant metadata (title, date, author) **For machines:** Full frontmatter (notion_id, notion_created, source) The site generator should: 1. Parse frontmatter for machine use 2. Hide technical fields from public display 3. Show only: title, date, author, series, tags ```yaml # Visible to humans (elegant) title: "THE ENGINEER AND THE STARSHIP" date: 2025-10-13 author: "Mark Randall Havens" # Hidden from display (machine-readable) notion_id: "28bef9407594809298a9eef1fe68028c" notion_created: "2025-10-13T08:00:00.000Z" source: Notion ``` The coherence tools read the full frontmatter. Humans see elegance.