The page layout is the simplest content layout in the theme. It wraps your content in the standard site chrome and optionally shows a title and subtype label.
To use the Page layout in your Jekyll site, create a page with the following front matter:
---
layout: page
title: About
---
| Parameter | Default | Description |
|---|---|---|
layout |
Required | Must be set to page |
title |
None | Page title shown above the content |
subtype |
None | Small label shown above the title |
tag |
None | Used as a fallback title in tag-based pages |
title is present.subtype is present.page.tag as the title in tag-oriented pages.---
layout: page
title: About this site
subtype: Guide
---