--- title: Schema --- Schema markup provides additional context for search engines and screen readers. The main schema template is included in the `` via `src/_includes/head/schema.njk`. New schemas should be placed in `src/_includes/schemas/`. To use the "BlogPosting" schema, set the schema key in the front matter: ```yaml --- schema: BlogPosting --- ``` To use an Event schema for example, create a template at `src/_includes/schemas/Event.njk`, with something similar to: {% raw %} ```jinja2 ``` {% endraw %} And reference it in the front matter: ```yaml --- schema: Event --- ```