Skip to content

LiamHaggerty1/LH_Intro_to_Github3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Pages

Create a site or blog from your GitHub repositories with GitHub Pages.

Step 1: Enable GitHub Pages

Welcome to GitHub Pages and Jekyll 🎉!

The first step is to enable GitHub Pages on this repository. When you enable GitHub Pages on a repository, GitHub takes the content that's on the main branch and publishes a website based on its contents.

⌨️ Activity: Enable GitHub Pages

  1. Open a new browser tab, and work on the steps in your second tab while you read the instructions in this tab.
  2. Under your repository name, click Settings.
  3. Click Pages, in the "GitHub Pages" section, use the Source drop-down, then select main branch.
  4. Wait about one minute, then refresh this page for the next step.

    Turning on GitHub Pages creates a deployment of your repository. GitHub Actions may take up to a minute to respond while waiting for the deployment. Future steps will be about 20 seconds; this step is slower.

Step 2: Configure your site

You turned on GitHub Pages! 🎉

We'll work in a branch, my-pages, that I created for you to get this site looking great. ❇️

Jekyll uses a file titled _config.yml to store settings for your site, your theme, and reusable content like your site title and GitHub handle. You can check out the _config.yml file on the Code tab of your repository.

We need to use a blog-ready theme. For this activity, we will use a theme named "minima".

⌨️ Activity: Configure your site

  1. Browse to the _config.yml file in the my-pages branch.
  2. In the upper right corner, open the file editor.
  3. Add a theme: set to minima so it shows in the _config.yml file as below:
    theme: minima
  4. (optional) You can modify the other configuration variables such as title:, author:, and description: to further customize your site.
  5. Commit your changes.
  6. Wait about 20 seconds then refresh this page for the next step.

Step 3: Customize your homepage

Nice work setting the theme! ✨

You can customize your homepage by adding content to either an index.md file or the README.md file. GitHub Pages first looks for an index.md file. Your repository has an index.md file so we can update it to include your personalized content.

⌨️ Activity: Create your homepage

  1. Browse to the index.md file in the my-pages branch.
  2. In the upper right corner, open the file editor.
  3. Type the content you want on your homepage. You can use Markdown formatting on this page.
  4. (optional) You can also modify title: or just ignore it for now. We'll discuss it in the next step.
  5. Commit your changes to the my-pages branch.
  6. Wait about 20 seconds then refresh this page for the next step.

Step 4: Create a blog post

Your home page is looking great! 🤠

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.

⌨️ Activity: Create a blog post

  1. Browse to the my-pages branch.
  2. Click the Add file dropdown menu and then on Create new file.
  3. Name the file _posts/YYYY-MM-DD-title.md.
  4. Replace the YYYY-MM-DD with today's date, and change the title of your first blog post if you'd like.

    If you do edit the title, make sure there are hyphens between your words. If your blog post date doesn't follow the correct date convention, you'll receive an error and your site won't build. For more information, see "Page build failed: Invalid post date".

  5. Type the following content at the top of your blog post:
    ---
    title: "YOUR-TITLE"
    date: YYYY-MM-DD
    ---
  6. Replace YOUR-TITLE with the title for your blog post.
  7. Replace YYYY-MM-DD with today's date.
  8. Type a quick draft of your blog post. Remember, you can always edit it later.
  9. Commit your changes to your branch.
  10. Wait about 20 seconds then refresh this page for the next step.

Step 5: Merge your pull request

Nice work, friend ❤️! People will be reading your blog in no time!

You can now merge your pull request!

⌨️ Activity: Merge your pull request

  1. Click Merge pull request.
  2. Delete the branch my-pages (optional).
  3. Wait about 20 seconds then refresh this page for the next step.

Finish

Congratulations friend, you've completed this course!

celebrate

Your blog is now live and has been deployed!

Here's a recap of all the tasks you've accomplished in your repository:

  • You enabled GitHub Pages.
  • You selected a theme using the config file.
  • You learned about proper directory format and file naming conventions in Jekyll.
  • You created your first a blog post with Jekyll!

What's next?


Get help: Post in our discussion boardReview the GitHub status page

© 2022 GitHub • Code of ConductCC-BY-4.0 License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published