Welcome to Technical Blogging with Jekyll Workshop!!

Today we are going to learn the basics of publishing and maintaining a blog to host your technical writing. You will create a static blog and learn how to host it for free on Github Pages. You can expect to walk away being confident modifying and customizing your blog to better fit your needs.

Slides for the workshop are viewable here: http://aboutmonica.com/codeland/jekyll.pdf

Instructor Teaching Assistant
Monica Powell Nia Murrell
Monica Powell's headshot  Nia Murrell's Headshot

Installation

We will install the following software to run a Jekyll a blog. If you are on a Mac please run the following commands in your terminal. For windows users, these commands should be run in an application called, Git bash.

Install Git

Git is version control software. We will be using Git to download the initial software for our blog and to maintain version controlled instances of the content and code of our site. This will also make it easier for us to publish our blog on Github Pages later in the workshop.

Note: Replace Joan Doe with your name and e-mail address. Please be sure to use the same e-mail that is associated with your GitHub account.

Install Ruby

Jekyll is built using Ruby and thus Ruby is necessary in order to allow Jekyll to do its job!

Helpful notes for Ruby Installation:

Install Bundler to manage Ruby application’s gems (dependencies):

$ gem install bundler

screenshot of fork vs git on github

On GitHub

On GitHub.com fork this repository https://github.com/M0nica/dactl in order to make a copy of a working Jekyll site.

On command line:

We will be using our local server throughout the development cycle of our blog and whenever we are drafting content.