-
Notifications
You must be signed in to change notification settings - Fork 1
Pages
Dan Prince edited this page Nov 26, 2015
·
1 revision
Any documents in the root of the folder (or inside other folders that are not prefixed with a _
) will be rendered by Jekyll as pages.
You can create pages in a similar way to posts. However, they don't need to have a datestamped name. You can call a page whatever you want. Pages can be written in Markdown or HTML.
For instance, if I wanted to create a new page for a contact form, I would do the following.
touch ./contact-form.html
Then you have to add the page's front matter.
---
layout: page
title: Page Title
---
Then edit the content of the page, before pushing it to review
.