My clone repository
https://github.com/zannager/skills-github-pages.git
Create a site or blog from your GitHub repositories with GitHub Pages.
Your home page is looking great! :cowboyhatface:
GitHub Pages uses Jekyll. In Jekyll, we can create a blog by using specially named files and frontmatter. The files must be named _posts/YYYY-MM-DD-title.md. You must also include title and date in your frontmatter.
What is frontmatter?: The syntax Jekyll files use is called YAML frontmatter. It goes at the top of your file and looks something like this:
---
title: "Welcome to my blog"
date: 2019-01-20
---
For more information about configuring front matter, see the Jekyll frontmatter documentation.
my-pages branch.Add file dropdown menu and then on Create new file._posts/YYYY-MM-DD-title.md.YYYY-MM-DD with today's date, and change the title of your first blog post if you'd like.---
title: "YOUR-TITLE"
date: YYYY-MM-DD
---
YOUR-TITLE with the title for your blog post.YYYY-MM-DD with today's date.