People with write permissions for a repository can add content to a site using Jekyll.
About content in Jekyll sites
Before you can add content to a Jekyll site on , you must create a Jekyll site. For more information, see "AUTOTITLE."
The main types of content for Jekyll sites are pages and posts. A page is for standalone content that isn't associated with a specific date, such as an "About" page. The default Jekyll site contains a file called about.md
, which renders as a page on your site at YOUR-SITE-URL/about
. You can edit the contents of that file to personalize your "About" page, and you can use the "About" page as a template to create new pages. For more information, see "Pages" in the Jekyll documentation.
A post is a blog post. The default Jekyll site contains a directory named _posts
that contains a default post file. You can edit the contents of that post, and you can use the default post as a template to create new posts. For more information, see "Posts" in the Jekyll documentation.
Your theme includes default layouts, includes, and stylesheets that will automatically be applied to new pages and posts on your site, but you can override any of these defaults. For more information, see "AUTOTITLE."
Adding a new page to your site
In the root of your publishing source, create a new file for your page called
PAGE-NAME.md
, replacing PAGE-NAME with a meaningful filename for the page.Add the following YAML frontmatter to the top of the file, replacing PAGE-TITLE with the page's title and URL-PATH with a path you want for the page's URL. For example, if the base URL of your site is
https://octocat.github.io
and your URL-PATH is/about/contact/
, your page will be located athttps://octocat.github.io/about/contact
.shelllayout: page title: "PAGE-TITLE" permalink: /URL-PATH
Below the frontmatter, add content for your page.
Adding a new post to your site
Navigate to the
_posts
directory.Create a new file called
YYYY-MM-DD-NAME-OF-POST.md
, replacing YYYY-MM-DD with the date of your post and NAME-OF-POST with the name of your post.Add the following YAML frontmatter to the top of the file, including the post's title enclosed in quotation marks, the date and time for the post in YYYY-MM-DD hh:mm:ss -0000 format, and as many categories as you want for your post.
shelllayout: post title: "POST-TITLE" date: YYYY-MM-DD hh:mm:ss -0000 categories: CATEGORY-1 CATEGORY-2
Below the frontmatter, add content for your post.
Your post should now be up on your site! If the base URL of your site is https://octocat.github.io
, then your new post will be located at https://octocat.github.io/YYYY/MM/DD/TITLE.html
.
Next steps
For more information, see "AUTOTITLE."