YAML Front Matter

YAML (YAML Ain’t Markup Language) is a human-readable data format used to store structured information. In Jekyll-based sites like TSAP, YAML appears as front matter — a block of key-value pairs at the very top of every .md file, fenced by triple dashes (---).

Jekyll reads the front matter before processing the page, using it to set the layout, generate URLs, build navigation, and pass metadata to templates. Without front matter, Jekyll will not process the file as a page and it will not be rendered with a layout.

Note: Front matter must appear at the very top of the file, with no content before the opening ---.

TSAP YAML Parameters

Every TSAP page begins with a front matter block. Below is a real example, followed by an explanation of each parameter.

---
layout: default
title: Athanasius Mathen Abraham Ayrookuzhiel
permalink: /amaa/
categories: [A. M. A. Ayrookuzhiel, Biographies]
description: Biography of Rev. Athanasius Mathen Abraham Ayrookuzhiel (A. M. A. Ayrookuzhiel) (1933–1996), Indian theologian and scholar who advanced Dalit theology and contextual Christian thought through his work at the Christian Institute for the Study of Religion and Society.
created: 2025-10-27
---

layout

Required. Tells Jekyll which HTML template to wrap the page content in.

layout: default

title

Required. The title of the page. Used in the browser tab, page heading, and site navigation.

title: Athanasius Mathen Abraham Ayrookuzhiel
title: "Faith and Society: A Study"

description

Required. A plain-text summary of the page shown in search engine results and site previews.

description: Biography of Rev. Athanasius Mathen Abraham Ayrookuzhiel (A. M. A. Ayrookuzhiel) (1933–1996), Indian theologian and scholar who advanced Dalit theology and contextual Christian thought through his work at the Christian Institute for the Study of Religion and Society.

Required. Sets the URL path for the page on the site.

permalink: /amaa/

categories

Required. A list of category tags used to group and organise pages across the site.

categories: [A. M. A. Ayrookuzhiel, Biographies]

created

Required. The date the page was first created, in YYYY-MM-DD format.

created: 2025-10-27

Notes for TSAP Usage

📄 This page was created on 18 March 2026. You can view its history on GitHub, preview the fileTip: Press Alt+Shift+G, or inspect the .