description |
---|
Welcome to Jekyll’s step-by-step tutorial. This tutorial takes you from having some front-end web development experience to building your first Jekyll site from scratch .. |
Welcome to Jekyll’s step-by-step tutorial. This tutorial takes you from having some front-end web development experience to building your first Jekyll site from scratch without relying on the default gem-based theme.
Jekyll is a Ruby gem. First, install Ruby on your machine. Go to Installation and follow the instructions for your operating system.
With Ruby installed, install Jekyll from the terminal:
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/$ gem install jekyll bundler
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev> gem install jekyll bundler
{% endtab %} {% endtabs %}
Optional:
Create a folder called
jekyll
andcd
into itcraigsims@cloudshell:~/$ mkdir jekyll craigsims@cloudshell:~/$ cd jekyll craigsims@cloudshell:~/jekyll$
Create a new Gemfile
to list your project's dependencies:
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll$ bundle init
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll> bundle init
{% endtab %} {% endtabs %}
Edit the Gemfile
in a text editor and add jekyll as a dependency.
I'll use VSCode
to edit. Follow the steps below:
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll$ code Gemfile
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll> code Gemfile
{% endtab %} {% endtabs %}
Gemfile
# frozen_string_literal: true
source "https://rubygems.org"
# gem "rails"
gem "jekyll"
Run bundle
to install jekyll for your project.
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll$ bundle
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll> bundle
{% endtab %} {% endtabs %}
You can now prefix all jekyll commands listed in this tutorial with bundle exec
to make sure you use the jekyll version defined in your Gemfile
.
It's time to create a site! Create a new directory for your site and name it whatever you want. I'll name mine hello-jekyll
. Then I'll navigate to it.
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll$ mkdir hello-jekyll && cd hello-jekyll
craigsims@cloudshell:~/jekyll/hello-jekyll$
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll> mkdir hello-jekyll && cd hello-jekyll
C:\Users\craigsims\dev\jekyll\hello-jekyll>
{% endtab %} {% endtabs %}
Through the rest of this tutorial we'll refer to this directory as root.
You can also initialize a Git repository here.
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll/hello-jekyll$ git init
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll\hello-jekyll> git init
{% endtab %} {% endtabs %}
One of the great things about Jekyll is there's no database. All content and site structure are files that a Git repository can version. Using a repository is optional but is recommended. You can learn more about using Git by reading the Git Handbook.
Let's add your first file. Create index.html
in root.
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll/hello-jekyll$ touch index.html && code index.html
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll\hello-jekyll> type nul > index.html && code index.html
{% endtab %} {% endtabs %}
Add the following content toindex.html
:
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Since Jekyll is a static site generator, it has to build the site before we can view it. Run either of the following commands to build your site:
jekyll build
- Builds the site and outputs a static site to a directory called_site
.jekyll serve
- Doesjekyll build
and runs it on a local web server athttp://localhost:4000
, rebuilding the site any time you make a change.
{% hint style="info" %}
When you're developing a site, use jekyll serve
. To force the browser to refresh with every change, usejekyll serve --livereload
. If there's a conflict or you'd like Jekyll to serve your development site at a different URL, use the --host
and --port
arguments, as described in the serve command options
{% endhint %}
{% hint style="warning" %}
The version of the site that jekyll serve
builds in _site
is not suited for deployment. Links and asset URLs in sites created with jekyll serve
will use https://localhost:4000
or the value set with command-line configuration, instead of the values set in your site's configuration file. To learn about how to build your site when it's ready for deployment, read the Deployment section of this tutorial.
{% endhint %}
Run jekyll serve
or bundle exec jekyll serve
in root in the terminal:
{% tabs %} {% tab title="Linux" %}
craigsims@cloudshell:~/jekyll/hello-jekyll$ jekyll serve
{% endtab %}
{% tab title="Windows" %}
C:\Users\craigsims\dev\jekyll\hello-jekyll> jekyll serve
{% endtab %} {% endtabs %}
Go to http://localhost:4000 in your browser. You should see "Hello World!". As seen below:
At this point, you might be thinking, "So what?". The only thing that happened was that Jekyll copied an HTML file from one place to another.
Patience, young grasshopper, there's still much to learn!
Next. you'll learn about Liquid and templating.