Incantations
Making this site

Some notes on how this site is assembled in .22 seconds by a series of scripts and codes

YOU WILL FIND this post in your _posts directory, if you’re managing a Jekyll site. Jekyll is a static site generator, written in Ruby. Here’s how it works: you install Jekyll locally:

~ $ gem install jekyll bundler

and you generate the scaffolding for a new site with a brief incantation like this:

~ $ jekyll new my-new-site-name

Then you simply move to the site directory you just created

~ $ cd my-new-site-name

and then from inside that directory, you run the Jekyll server

~/my-new-site-name $ bundle exec jekyll serve --watch

Now that the server is ‘watching’ your site for changes, as you add code and content, Jekyll automatically re-generates the entire site. In my case, with just a few pages, the process takes .22 seconds. Then you push the site to a git repository like Github, and publish it via Github Pages.

WHY JEKYLL?

What can you do with Jekyll? Well, pretty much anything that you can do with Ruby. If you’re like me, and eager to learn more Ruby, then Jekyll is a great way to ease into things. Take a look at the list of blog posts in /blog (or the footer of the home page), under the hood there’s a bit of embedded Ruby in the HTML and this Ruby says: make a list of all the blog articles, discard all but the most recent three posts, then create a 23-word excerpt for each, and output the hed, dek, small image, and excerpt into these HTML tags here. The hed, dek, etc. are all defined in the front matter of the markdown file you use to create the post. ‘Front matter’ sound confusing? Just open the sample posts that are baked into the default new site. It’ll make instant sense. They’re just variables that you can refer to elsewhere.

I found Jekyll’s includes and layouts easy to navigate. You put reusable code for the head, header, and footers in the includes directory, then include them into layouts you create, for example a page layout. When you create a new instance of a page, it knows that a page is just a slight variation on the default layout.

Because there’s no database in the backend, there’s reduced complexity, increased security, and each page is much snappier to load.

When I first heard about static site generators, I was a bit confused. If this were possible, why aren’t more bloggy sites using static site generators? Turns out the answer is: because we just needed a little time to figure out how simple it is. At least that’s how I feel.

CREDITS

This site is hosted using Github Pages, which makes hosting HTTPS sites relatively painless and easy, not to mention very cost-effective (gratis). I used the Bootstrap Agency theme for its animated fixed nav bar and nice timeline CSS. All icons are by FontAwesome, and from time to time I use the following icons from the Noun Project

  • Recursive triangles, Created by Bohdan Burmich
  • Donut chart, created by HLD
  • Lightbulb, created by ImageCatalog

The full-bleed image at the top of the site is a photogram of pine needles. I chose this image because it reveals the rhythm, inner structure of something simple, something we take for granted. It is “Dennenaalden, anonymous, 1840 - 1845” and is part of the Rijskmuseum collection in Amsterdam.

REBUILDING AND PUBLISHING

You can rebuild the site locally in many different ways, but using the –watch flag is simple. When you’re ready, you publish the entire site with a new incantation:

git push -u origin master

Simple, right?

To add new posts to your blog, simply add a file in the _posts directory that follows the convention YYYY-MM-DD-name-of-post.ext and includes the necessary front matter.

Jekyll also offers support for code snippets:

def print_hi(name)
  puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.

Check out the Jekyll docs for more info on how to get the most out of Jekyll. File all bugs/feature requests at Jekyll’s GitHub repo. If you have questions, you can ask them on Jekyll Talk.

Latest posts


Lard and felt
What Joseph Beuys can teach product managers and designers

IN AN EARLIER post, I wrote about the connections between research, product management, user experience design, product design, and prototyping. This post expands on the same theme: the...

Stefan Smagula, Oct 13, 2017
Half lion, half mini schnauzer
Are you product manager or designer?

PEOPLE ASK are you a product designer, a UX person, a researcher, a prototyper, or a product manager? Here's how I answer. For many years I've been designing...

Stefan Smagula, Oct 13, 2017
Incantations
Making this site

YOU WILL FIND this post in your _posts directory, if you’re managing a Jekyll site. Jekyll is a static site generator, written in Ruby. Here’s how it works:...

Stefan Smagula, Apr 2, 2017

To 'Augment Human Intelligence'

My goal is to help create software that extends our hands and minds and improves people's lives

Curious about the world

I'm curious about the connections between disciplines, the places where radically different ideas get yoked together to create something new.

Product management and design

I research, validate, and prioritize efforts so teams can focus on highest value, lowest complexity work. My background is in UX and product design.

Spirit of invention

Douglas Englebart and Vannevar Bush demonstrated that software can extend our minds. It's this spirit of invention that inspires me.

Get in touch