Andy's Cafe

Lessons About Github Pages

Page created :
Last updated :

I woke up today and thought, “I should put some work into the Technical Documentation Project”. It’s a lazy, easy-going Saturday: the perfect time to put in about an hour of work or so and go from there.

I filled up my water bottle, threw on my headphones, went to Spotify to play some music- today was an I The Mighty kind of day- and got straight to work. I started with some styling that was giving my trouble yesterday: I couldn’t get <code> blocks to render how I wanted them to. Today? No issues at all, I got it with minimal effort.

From that moment on, every task I wanted to complish would just get done. I get to a point where I felt like the site was done, so I peeked at the clock.

2:27PM

Holy cow, it’s been like 3 hours! I didn’t care though, I finished the project. The trouble began when I wanted to host it on Github Pages.

Breaks are important

Hosting a website on Github Pages is not hard. It’s a really wonderful thing in my opinion. You just have to remember to do the right things and everything will work! (Great advice, I know).

Here’s what I did

Can you see where I went wrong in the list of things I did? It’s a wonderful learning experience that I hopoe you never experience yourself. I think if I had taken a break after finishing the project, I would’ve caught the error sooner. Or not, I’m still new at this and make tons of mistakes with Jekyll.

Here’s what I forgot

I didn’t change the baseurl option in the _config.yml file. The site was loading just fine on Github, minus the fact that no styling was being applied. After messing with the stylesheet link for a while, I got it to take on the stylesheet from my main site.

That’s when it clicked: I needed the stylesheet found in the subdirectory for this particular project, but I wasn’t saying that in the HTML file.

You can bet that I am never making this mistake again.

How to Set Up a Project on Github Pages

Assumptions

Procedure

I am a fan of setting up the local development before pushing stuff to Github, so you’ll need to run

jekyll new projectName
cd projectName

to set up a new Jekyll project and change into that directory.

Next, we’ll set up version control by running git init.

Add a .gitignore

Before we do an initial commit we have some preliminaries to take care of. Let’s set up a .gitignore. Here’s what mine looks like because I’m on a Mac:

.DS_Store
Gemlock.file
_site
.sass-cache

Edit _config.yml

Now we’ll edit two of the files Jekyll gave us. Starting with _config.yml, open it in the editor of your choice. Change these to whatever you want:

title
email
description
twitter_username
github_username

Pay attention to baseurl and url!

Save the _config.yml file.

Edit the Gemfile

Moving on to the Gemfile, open it up in an editor.

Save the Gemfile file and run the following in the command line:

bundle update github-pages

This should make your local environment match the build environment on Github.

Time to turn our atttention to adding the files for the site.

A quick note, I like using .scss files, but I’ll include directions for plain .css as well. We’ll start there actually.

Adding CSS or Sass files and JavaScript

CSS + JS

Create some folders for your .css and .js files:

mkdir ./assets
mkdir ./assets/css
mkdir ./assets/js
Sass + JS

If Sass more of your style, do this instead:

mkdir ./assets
mkdir ./assets/js
touch ./assets/main.scss
mkdir ./_sass

Go ahead and place your CSS/JS/SASS files in their respective homes.

For the Sass people, open the assets/main.scss file we created earlier and add:

---
---

@import "minima"

I’m pretty sure the @import is for whatever your Sass files are named and if you have multiple in the _sass folder, import them in this file. In the Jekyll Docs, it says to override the default theme by creating similarly named files in our project. Read them for yourself and let me know if doing this in the best way.

Adding HTML

Moving on to the HTML files, go back to the root of the project and add:

mkdir ./_layouts
touch ./_layouts/default.html

Copy your HTML into the default.html file.

Before we can see your HTML render, we have to edit /about.md or /index.md, whichever was created by Jekyll for you. The file should look like this:

---
layout: default
---

Run the site

To locally run the site, just type

bundle exec jekyll serve

It should tell you to go to localhost:4000, open that up in your browser of choice. You should see your site!

Commit the files

Last but not least, we need to commit all of these files to git.

Congrats on your new site!

Reply via email