From 4e1ea0ed10732512de9a81419fc1da6c92a3bf70 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 20:29:52 +0800 Subject: [PATCH 01/17] Create README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7233dff --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# TwoJessica.github.io +# Jessica's blog +## using hugo to deploy my blog + From b2d8ba814d4500adf07e0682fba1314eb5fe3d17 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 20:30:35 +0800 Subject: [PATCH 02/17] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7233dff..55300cc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # TwoJessica.github.io + + + # Jessica's blog ## using hugo to deploy my blog From 221ded087488dfeeac6821d4ed716a4ead9f949f Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 20:31:07 +0800 Subject: [PATCH 03/17] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 55300cc..af38d0d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# TwoJessica.github.io -# Jessica's blog -## using hugo to deploy my blog + +## Jessica's blog +* using hugo to deploy my blog From 53cbea696b2bbe2df02491b201a23f11def88f56 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 20:32:08 +0800 Subject: [PATCH 04/17] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af38d0d..3272cbf 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,4 @@ ## Jessica's blog * using hugo to deploy my blog - +* position:myblog/public From d73cb67e3d91808c1884c1a380f469a216f6469f Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 20:32:20 +0800 Subject: [PATCH 05/17] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3272cbf..3dce60b 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,4 @@ ## Jessica's blog * using hugo to deploy my blog -* position:myblog/public +* position: myblog/public From af7aab6c30055190abf481930dd3abe6e496361c Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:12:14 +0800 Subject: [PATCH 06/17] Delete 2014 directory --- 2014/creating-a-new-theme/index.html | 939 --------------------------- 2014/goisforlovers/index.html | 379 ----------- 2014/hugoisforlovers/index.html | 200 ------ 2014/migrate-from-jekyll/index.html | 266 -------- 4 files changed, 1784 deletions(-) delete mode 100644 2014/creating-a-new-theme/index.html delete mode 100644 2014/goisforlovers/index.html delete mode 100644 2014/hugoisforlovers/index.html delete mode 100644 2014/migrate-from-jekyll/index.html diff --git a/2014/creating-a-new-theme/index.html b/2014/creating-a-new-theme/index.html deleted file mode 100644 index c713e18..0000000 --- a/2014/creating-a-new-theme/index.html +++ /dev/null @@ -1,939 +0,0 @@ - - - - - - Jessica's home | Creating a New Theme - - - - - - - - - - - - - - -
-
-
-
-

- - Creating a New Theme - -

- -
-
-
- - -
-
- - -
-
-
-
-

Introduction

-

This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme.

-

We’ll start with creating a new site with a very basic template. Then we’ll add in a few pages and posts. With small variations on that, you will be able to create many different types of web sites.

-

In this tutorial, commands that you enter will start with the “$” prompt. The output will follow. Lines that start with “#” are comments that I’ve added to explain a point. When I show updates to a file, the “:wq” on the last line means to save the file.

-

Here’s an example:

-
## this is a comment
-$ echo this is a command
-this is a command
-
-## edit the file
-$ vi foo.md
-+++
-date = "2014-09-28"
-title = "creating a new theme"
-+++
-
-bah and humbug
-:wq
-
-## show it
-$ cat foo.md
-+++
-date = "2014-09-28"
-title = "creating a new theme"
-+++
-
-bah and humbug
-$
-

Some Definitions

-

There are a few concepts that you need to understand before creating a theme.

-

Skins

-

Skins are the files responsible for the look and feel of your site. It’s the CSS that controls colors and fonts, it’s the Javascript that determines actions and reactions. It’s also the rules that Hugo uses to transform your content into the HTML that the site will serve to visitors.

-

You have two ways to create a skin. The simplest way is to create it in the layouts/ directory. If you do, then you don’t have to worry about configuring Hugo to recognize it. The first place that Hugo will look for rules and files is in the layouts/ directory so it will always find the skin.

-

Your second choice is to create it in a sub-directory of the themes/ directory. If you do, then you must always tell Hugo where to search for the skin. It’s extra work, though, so why bother with it?

-

The difference between creating a skin in layouts/ and creating it in themes/ is very subtle. A skin in layouts/ can’t be customized without updating the templates and static files that it is built from. A skin created in themes/, on the other hand, can be and that makes it easier for other people to use it.

-

The rest of this tutorial will call a skin created in the themes/ directory a theme.

-

Note that you can use this tutorial to create a skin in the layouts/ directory if you wish to. The main difference will be that you won’t need to update the site’s configuration file to use a theme.

-

The Home Page

-

The home page, or landing page, is the first page that many visitors to a site see. It is the index.html file in the root directory of the web site. Since Hugo writes files to the public/ directory, our home page is public/index.html.

-

Site Configuration File

-

When Hugo runs, it looks for a configuration file that contains settings that override default values for the entire site. The file can use TOML, YAML, or JSON. I prefer to use TOML for my configuration files. If you prefer to use JSON or YAML, you’ll need to translate my examples. You’ll also need to change the name of the file since Hugo uses the extension to determine how to process it.

-

Hugo translates Markdown files into HTML. By default, Hugo expects to find Markdown files in your content/ directory and template files in your themes/ directory. It will create HTML files in your public/ directory. You can change this by specifying alternate locations in the configuration file.

-

Content

-

Content is stored in text files that contain two sections. The first section is the “front matter,” which is the meta-information on the content. The second section contains Markdown that will be converted to HTML.

-

Front Matter

-

The front matter is information about the content. Like the configuration file, it can be written in TOML, YAML, or JSON. Unlike the configuration file, Hugo doesn’t use the file’s extension to know the format. It looks for markers to signal the type. TOML is surrounded by “+++”, YAML by “---”, and JSON is enclosed in curly braces. I prefer to use TOML, so you’ll need to translate my examples if you prefer YAML or JSON.

-

The information in the front matter is passed into the template before the content is rendered into HTML.

-

Markdown

-

Content is written in Markdown which makes it easier to create the content. Hugo runs the content through a Markdown engine to create the HTML which will be written to the output file.

-

Template Files

-

Hugo uses template files to render content into HTML. Template files are a bridge between the content and presentation. Rules in the template define what content is published, where it’s published to, and how it will rendered to the HTML file. The template guides the presentation by specifying the style to use.

-

There are three types of templates: single, list, and partial. Each type takes a bit of content as input and transforms it based on the commands in the template.

-

Hugo uses its knowledge of the content to find the template file used to render the content. If it can’t find a template that is an exact match for the content, it will shift up a level and search from there. It will continue to do so until it finds a matching template or runs out of templates to try. If it can’t find a template, it will use the default template for the site.

-

Please note that you can use the front matter to influence Hugo’s choice of templates.

-

Single Template

-

A single template is used to render a single piece of content. For example, an article or post would be a single piece of content and use a single template.

-

List Template

-

A list template renders a group of related content. That could be a summary of recent postings or all articles in a category. List templates can contain multiple groups.

-

The homepage template is a special type of list template. Hugo assumes that the home page of your site will act as the portal for the rest of the content in the site.

-

Partial Template

-

A partial template is a template that can be included in other templates. Partial templates must be called using the “partial” template command. They are very handy for rolling up common behavior. For example, your site may have a banner that all pages use. Instead of copying the text of the banner into every single and list template, you could create a partial with the banner in it. That way if you decide to change the banner, you only have to change the partial template.

-

Create a New Site

-

Let’s use Hugo to create a new web site. I’m a Mac user, so I’ll create mine in my home directory, in the Sites folder. If you’re using Linux, you might have to create the folder first.

-

The “new site” command will create a skeleton of a site. It will give you the basic directory structure and a useable configuration file.

-
$ hugo new site ~/Sites/zafta
-$ cd ~/Sites/zafta
-$ ls -l
-total 8
-drwxr-xr-x  7 quoha  staff  238 Sep 29 16:49 .
-drwxr-xr-x  3 quoha  staff  102 Sep 29 16:49 ..
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 archetypes
--rw-r--r--  1 quoha  staff   82 Sep 29 16:49 config.toml
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 content
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 layouts
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 static
-$
-

Take a look in the content/ directory to confirm that it is empty.

-

The other directories (archetypes/, layouts/, and static/) are used when customizing a theme. That’s a topic for a different tutorial, so please ignore them for now.

-

Generate the HTML For the New Site

-

Running the hugo command with no options will read all the available content and generate the HTML files. It will also copy all static files (that’s everything that’s not content). Since we have an empty site, it won’t do much, but it will do it very quickly.

-
$ hugo --verbose
-INFO: 2014/09/29 Using config file: config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html]
-WARN: 2014/09/29 Unable to locate layout: [404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 2 ms
-$ 
-

The “--verbose” flag gives extra information that will be helpful when we build the template. Every line of the output that starts with “INFO:” or “WARN:” is present because we used that flag. The lines that start with “WARN:” are warning messages. We’ll go over them later.

-

We can verify that the command worked by looking at the directory again.

-
$ ls -l
-total 8
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 archetypes
--rw-r--r--  1 quoha  staff   82 Sep 29 16:49 config.toml
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 content
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 layouts
-drwxr-xr-x  4 quoha  staff  136 Sep 29 17:02 public
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 static
-$
-

See that new public/ directory? Hugo placed all generated content there. When you’re ready to publish your web site, that’s the place to start. For now, though, let’s just confirm that we have what we’d expect from a site with no content.

-
$ ls -l public
-total 16
--rw-r--r--  1 quoha  staff  416 Sep 29 17:02 index.xml
--rw-r--r--  1 quoha  staff  262 Sep 29 17:02 sitemap.xml
-$ 
-

Hugo created two XML files, which is standard, but there are no HTML files.

-

Test the New Site

-

Verify that you can run the built-in web server. It will dramatically shorten your development cycle if you do. Start it by running the “server” command. If it is successful, you will see output similar to the following:

-
$ hugo server --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html]
-WARN: 2014/09/29 Unable to locate layout: [404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 2 ms
-Serving pages from /Users/quoha/Sites/zafta/public
-Web Server is available at http://localhost:1313
-Press Ctrl+C to stop
-

Connect to the listed URL (it’s on the line that starts with “Web Server”). If everything is working correctly, you should get a page that shows the following:

-
index.xml
-sitemap.xml
-

That’s a listing of your public/ directory. Hugo didn’t create a home page because our site has no content. When there’s no index.html file in a directory, the server lists the files in the directory, which is what you should see in your browser.

-

Let’s go back and look at those warnings again.

-
WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html]
-WARN: 2014/09/29 Unable to locate layout: [404.html]
-

That second warning is easier to explain. We haven’t created a template to be used to generate “page not found errors.” The 404 message is a topic for a separate tutorial.

-

Now for the first warning. It is for the home page. You can tell because the first layout that it looked for was “index.html.” That’s only used by the home page.

-

I like that the verbose flag causes Hugo to list the files that it’s searching for. For the home page, they are index.html, _default/list.html, and _default/single.html. There are some rules that we’ll cover later that explain the names and paths. For now, just remember that Hugo couldn’t find a template for the home page and it told you so.

-

At this point, you’ve got a working installation and site that we can build upon. All that’s left is to add some content and a theme to display it.

-

Create a New Theme

-

Hugo doesn’t ship with a default theme. There are a few available (I counted a dozen when I first installed Hugo) and Hugo comes with a command to create new themes.

-

We’re going to create a new theme called “zafta.” Since the goal of this tutorial is to show you how to fill out the files to pull in your content, the theme will not contain any CSS. In other words, ugly but functional.

-

All themes have opinions on content and layout. For example, Zafta uses “post” over “blog”. Strong opinions make for simpler templates but differing opinions make it tougher to use themes. When you build a theme, consider using the terms that other themes do.

-

Create a Skeleton

-

Use the hugo “new” command to create the skeleton of a theme. This creates the directory structure and places empty files for you to fill out.

-
$ hugo new theme zafta
-
-$ ls -l
-total 8
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 archetypes
--rw-r--r--  1 quoha  staff   82 Sep 29 16:49 config.toml
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 content
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 layouts
-drwxr-xr-x  4 quoha  staff  136 Sep 29 17:02 public
-drwxr-xr-x  2 quoha  staff   68 Sep 29 16:49 static
-drwxr-xr-x  3 quoha  staff  102 Sep 29 17:31 themes
-
-$ find themes -type f | xargs ls -l
--rw-r--r--  1 quoha  staff  1081 Sep 29 17:31 themes/zafta/LICENSE.md
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/archetypes/default.md
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/layouts/_default/list.html
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/layouts/_default/single.html
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/layouts/index.html
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/layouts/partials/footer.html
--rw-r--r--  1 quoha  staff     0 Sep 29 17:31 themes/zafta/layouts/partials/header.html
--rw-r--r--  1 quoha  staff    93 Sep 29 17:31 themes/zafta/theme.toml
-$ 
-

The skeleton includes templates (the files ending in .html), license file, a description of your theme (the theme.toml file), and an empty archetype.

-

Please take a minute to fill out the theme.toml and LICENSE.md files. They’re optional, but if you’re going to be distributing your theme, it tells the world who to praise (or blame). It’s also nice to declare the license so that people will know how they can use the theme.

-
$ vi themes/zafta/theme.toml
-author = "michael d henderson"
-description = "a minimal working template"
-license = "MIT"
-name = "zafta"
-source_repo = ""
-tags = ["tags", "categories"]
-:wq
-
-## also edit themes/zafta/LICENSE.md and change
-## the bit that says "YOUR_NAME_HERE"
-

Note that the the skeleton’s template files are empty. Don’t worry, we’ll be changing that shortly.

-
$ find themes/zafta -name '*.html' | xargs ls -l
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/_default/list.html
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/_default/single.html
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/index.html
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/partials/footer.html
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/partials/header.html
-$
-

Update the Configuration File to Use the Theme

-

Now that we’ve got a theme to work with, it’s a good idea to add the theme name to the configuration file. This is optional, because you can always add “-t zafta” on all your commands. I like to put it the configuration file because I like shorter command lines. If you don’t put it in the configuration file or specify it on the command line, you won’t use the template that you’re expecting to.

-

Edit the file to add the theme, add a title for the site, and specify that all of our content will use the TOML format.

-
$ vi config.toml
-theme = "zafta"
-baseurl = ""
-languageCode = "en-us"
-title = "zafta - totally refreshing"
-MetaDataFormat = "toml"
-:wq
-
-$
-

Generate the Site

-

Now that we have an empty theme, let’s generate the site again.

-
$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 2 ms
-$
-

Did you notice that the output is different? The warning message for the home page has disappeared and we have an additional information line saying that Hugo is syncing from the theme’s directory.

-

Let’s check the public/ directory to see what Hugo’s created.

-
$ ls -l public
-total 16
-drwxr-xr-x  2 quoha  staff   68 Sep 29 17:56 css
--rw-r--r--  1 quoha  staff    0 Sep 29 17:56 index.html
--rw-r--r--  1 quoha  staff  407 Sep 29 17:56 index.xml
-drwxr-xr-x  2 quoha  staff   68 Sep 29 17:56 js
--rw-r--r--  1 quoha  staff  243 Sep 29 17:56 sitemap.xml
-$
-

Notice four things:

-
    -
  1. Hugo created a home page. This is the file public/index.html.
  2. -
  3. Hugo created a css/ directory.
  4. -
  5. Hugo created a js/ directory.
  6. -
  7. Hugo claimed that it created 0 pages. It created a file and copied over static files, but didn’t create any pages. That’s because it considers a “page” to be a file created directly from a content file. It doesn’t count things like the index.html files that it creates automatically.
  8. -
-

The Home Page

-

Hugo supports many different types of templates. The home page is special because it gets its own type of template and its own template file. The file, layouts/index.html, is used to generate the HTML for the home page. The Hugo documentation says that this is the only required template, but that depends. Hugo’s warning message shows that it looks for three different templates:

-
WARN: 2014/09/29 Unable to locate layout: [index.html _default/list.html _default/single.html]
-

If it can’t find any of these, it completely skips creating the home page. We noticed that when we built the site without having a theme installed.

-

When Hugo created our theme, it created an empty home page template. Now, when we build the site, Hugo finds the template and uses it to generate the HTML for the home page. Since the template file is empty, the HTML file is empty, too. If the template had any rules in it, then Hugo would have used them to generate the home page.

-
$ find . -name index.html | xargs ls -l
--rw-r--r--  1 quoha  staff  0 Sep 29 20:21 ./public/index.html
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 ./themes/zafta/layouts/index.html
-$ 
-

The Magic of Static

-

Hugo does two things when generating the site. It uses templates to transform content into HTML and it copies static files into the site. Unlike content, static files are not transformed. They are copied exactly as they are.

-

Hugo assumes that your site will use both CSS and JavaScript, so it creates directories in your theme to hold them. Remember opinions? Well, Hugo’s opinion is that you’ll store your CSS in a directory named css/ and your JavaScript in a directory named js/. If you don’t like that, you can change the directory names in your theme directory or even delete them completely. Hugo’s nice enough to offer its opinion, then behave nicely if you disagree.

-
$ find themes/zafta -type d | xargs ls -ld
-drwxr-xr-x  7 quoha  staff  238 Sep 29 17:38 themes/zafta
-drwxr-xr-x  3 quoha  staff  102 Sep 29 17:31 themes/zafta/archetypes
-drwxr-xr-x  5 quoha  staff  170 Sep 29 17:31 themes/zafta/layouts
-drwxr-xr-x  4 quoha  staff  136 Sep 29 17:31 themes/zafta/layouts/_default
-drwxr-xr-x  4 quoha  staff  136 Sep 29 17:31 themes/zafta/layouts/partials
-drwxr-xr-x  4 quoha  staff  136 Sep 29 17:31 themes/zafta/static
-drwxr-xr-x  2 quoha  staff   68 Sep 29 17:31 themes/zafta/static/css
-drwxr-xr-x  2 quoha  staff   68 Sep 29 17:31 themes/zafta/static/js
-$ 
-

The Theme Development Cycle

-

When you’re working on a theme, you will make changes in the theme’s directory, rebuild the site, and check your changes in the browser. Hugo makes this very easy:

-
    -
  1. Purge the public/ directory.
  2. -
  3. Run the built in web server in watch mode.
  4. -
  5. Open your site in a browser.
  6. -
  7. Update the theme.
  8. -
  9. Glance at your browser window to see changes.
  10. -
  11. Return to step 4.
  12. -
-

I’ll throw in one more opinion: never work on a theme on a live site. Always work on a copy of your site. Make changes to your theme, test them, then copy them up to your site. For added safety, use a tool like Git to keep a revision history of your content and your theme. Believe me when I say that it is too easy to lose both your mind and your changes.

-

Check the main Hugo site for information on using Git with Hugo.

-

Purge the public/ Directory

-

When generating the site, Hugo will create new files and update existing ones in the public/ directory. It will not delete files that are no longer used. For example, files that were created in the wrong directory or with the wrong title will remain. If you leave them, you might get confused by them later. I recommend cleaning out your site prior to generating it.

-

Note: If you’re building on an SSD, you should ignore this. Churning on a SSD can be costly.

-

Hugo’s Watch Option

-

Hugo’s “--watch” option will monitor the content/ and your theme directories for changes and rebuild the site automatically.

-

Live Reload

-

Hugo’s built in web server supports live reload. As pages are saved on the server, the browser is told to refresh the page. Usually, this happens faster than you can say, “Wow, that’s totally amazing.”

-

Development Commands

-

Use the following commands as the basis for your workflow.

-
## purge old files. hugo will recreate the public directory.
-##
-$ rm -rf public
-##
-## run hugo in watch mode
-##
-$ hugo server --watch --verbose
-

Here’s sample output showing Hugo detecting a change to the template for the home page. Once generated, the web browser automatically reloaded the page. I’ve said this before, it’s amazing.

-
$ rm -rf public
-$ hugo server --watch --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 2 ms
-Watching for changes in /Users/quoha/Sites/zafta/content
-Serving pages from /Users/quoha/Sites/zafta/public
-Web Server is available at http://localhost:1313
-Press Ctrl+C to stop
-INFO: 2014/09/29 File System Event: ["/Users/quoha/Sites/zafta/themes/zafta/layouts/index.html": MODIFY|ATTRIB]
-Change detected, rebuilding site
-
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 1 ms
-

Update the Home Page Template

-

The home page is one of a few special pages that Hugo creates automatically. As mentioned earlier, it looks for one of three files in the theme’s layout/ directory:

-
    -
  1. index.html
  2. -
  3. _default/list.html
  4. -
  5. _default/single.html
  6. -
-

We could update one of the default templates, but a good design decision is to update the most specific template available. That’s not a hard and fast rule (in fact, we’ll break it a few times in this tutorial), but it is a good generalization.

-

Make a Static Home Page

-

Right now, that page is empty because we don’t have any content and we don’t have any logic in the template. Let’s change that by adding some text to the template.

-
$ vi themes/zafta/layouts/index.html
-<!DOCTYPE html> 
-<html> 
-<body> 
-  <p>hugo says hello!</p> 
-</body> 
-</html> 
-:wq
-
-$
-

Build the web site and then verify the results.

-
$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-0 pages created 
-0 tags created
-0 categories created
-in 2 ms
-
-$ find public -type f -name '*.html' | xargs ls -l
--rw-r--r--  1 quoha  staff  78 Sep 29 21:26 public/index.html
-
-$ cat public/index.html 
-<!DOCTYPE html> 
-<html> 
-<body> 
-  <p>hugo says hello!</p> 
-</html>
-

Live Reload

-

Note: If you’re running the server with the --watch option, you’ll see different content in the file:

-
$ cat public/index.html 
-<!DOCTYPE html> 
-<html> 
-<body> 
-  <p>hugo says hello!</p> 
-<script>document.write('<script src="http://' 
-        + (location.host || 'localhost').split(':')[0] 
-    + ':1313/livereload.js?mindelay=10"></' 
-        + 'script>')</script></body> 
-</html>
-

When you use --watch, the Live Reload script is added by Hugo. Look for live reload in the documentation to see what it does and how to disable it.

-

Build a “Dynamic” Home Page

-

“Dynamic home page?” Hugo’s a static web site generator, so this seems an odd thing to say. I mean let’s have the home page automatically reflect the content in the site every time Hugo builds it. We’ll use iteration in the template to do that.

-

Create New Posts

-

Now that we have the home page generating static content, let’s add some content to the site. We’ll display these posts as a list on the home page and on their own page, too.

-

Hugo has a command to generate a skeleton post, just like it does for sites and themes.

-
$ hugo --verbose new post/first.md
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 attempting to create  post/first.md of post
-INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/default.md
-ERROR: 2014/09/29 Unable to Cast <nil> to map[string]interface{}
-
-$ 
-

That wasn’t very nice, was it?

-

The “new” command uses an archetype to create the post file. Hugo created an empty default archetype file, but that causes an error when there’s a theme. For me, the workaround was to create an archetypes file specifically for the post type.

-
$ vi themes/zafta/archetypes/post.md
-+++
-Description = ""
-Tags = []
-Categories = []
-+++
-:wq
-
-$ find themes/zafta/archetypes -type f | xargs ls -l
--rw-r--r--  1 quoha  staff   0 Sep 29 21:53 themes/zafta/archetypes/default.md
--rw-r--r--  1 quoha  staff  51 Sep 29 21:54 themes/zafta/archetypes/post.md
-
-$ hugo --verbose new post/first.md
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 attempting to create  post/first.md of post
-INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/post.md
-INFO: 2014/09/29 creating /Users/quoha/Sites/zafta/content/post/first.md
-/Users/quoha/Sites/zafta/content/post/first.md created
-
-$ hugo --verbose new post/second.md
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 attempting to create  post/second.md of post
-INFO: 2014/09/29 curpath: /Users/quoha/Sites/zafta/themes/zafta/archetypes/post.md
-INFO: 2014/09/29 creating /Users/quoha/Sites/zafta/content/post/second.md
-/Users/quoha/Sites/zafta/content/post/second.md created
-
-$ ls -l content/post
-total 16
--rw-r--r--  1 quoha  staff  104 Sep 29 21:54 first.md
--rw-r--r--  1 quoha  staff  105 Sep 29 21:57 second.md
-
-$ cat content/post/first.md 
-+++
-Categories = []
-Description = ""
-Tags = []
-date = "2014-09-29T21:54:53-05:00"
-title = "first"
-
-+++
-my first post
-
-$ cat content/post/second.md 
-+++
-Categories = []
-Description = ""
-Tags = []
-date = "2014-09-29T21:57:09-05:00"
-title = "second"
-
-+++
-my second post
-
-$ 
-

Build the web site and then verify the results.

-
$ rm -rf public
-$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 found taxonomies: map[string]string{"category":"categories", "tag":"tags"}
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-2 pages created 
-0 tags created
-0 categories created
-in 4 ms
-$
-

The output says that it created 2 pages. Those are our new posts:

-
$ find public -type f -name '*.html' | xargs ls -l
--rw-r--r--  1 quoha  staff  78 Sep 29 22:13 public/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:13 public/post/first/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:13 public/post/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:13 public/post/second/index.html
-$
-

The new files are empty because because the templates used to generate the content are empty. The homepage doesn’t show the new content, either. We have to update the templates to add the posts.

-

List and Single Templates

-

In Hugo, we have three major kinds of templates. There’s the home page template that we updated previously. It is used only by the home page. We also have “single” templates which are used to generate output for a single content file. We also have “list” templates that are used to group multiple pieces of content before generating output.

-

Generally speaking, list templates are named “list.html” and single templates are named “single.html.”

-

There are three other types of templates: partials, content views, and terms. We will not go into much detail on these.

-

Add Content to the Homepage

-

The home page will contain a list of posts. Let’s update its template to add the posts that we just created. The logic in the template will run every time we build the site.

-
$ vi themes/zafta/layouts/index.html 
-<!DOCTYPE html>
-<html>
-<body>
-  {{ range first 10 .Data.Pages }}
-    <h1>{{ .Title }}</h1>
-  {{ end }}
-</body>
-</html>
-:wq
-
-$
-

Hugo uses the Go template engine. That engine scans the template files for commands which are enclosed between “{{” and “}}”. In our template, the commands are:

-
    -
  1. range
  2. -
  3. .Title
  4. -
  5. end
  6. -
-

The “range” command is an iterator. We’re going to use it to go through the first ten pages. Every HTML file that Hugo creates is treated as a page, so looping through the list of pages will look at every file that will be created.

-

The “.Title” command prints the value of the “title” variable. Hugo pulls it from the front matter in the Markdown file.

-

The “end” command signals the end of the range iterator. The engine loops back to the top of the iteration when it finds “end.” Everything between the “range” and “end” is evaluated every time the engine goes through the iteration. In this file, that would cause the title from the first ten pages to be output as heading level one.

-

It’s helpful to remember that some variables, like .Data, are created before any output files. Hugo loads every content file into the variable and then gives the template a chance to process before creating the HTML files.

-

Build the web site and then verify the results.

-
$ rm -rf public
-$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"}
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-2 pages created 
-0 tags created
-0 categories created
-in 4 ms
-$ find public -type f -name '*.html' | xargs ls -l 
--rw-r--r--  1 quoha  staff  94 Sep 29 22:23 public/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:23 public/post/first/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:23 public/post/index.html
--rw-r--r--  1 quoha  staff   0 Sep 29 22:23 public/post/second/index.html
-$ cat public/index.html 
-<!DOCTYPE html>
-<html>
-<body>
-  
-    <h1>second</h1>
-  
-    <h1>first</h1>
-  
-</body>
-</html>
-$
-

Congratulations, the home page shows the title of the two posts. The posts themselves are still empty, but let’s take a moment to appreciate what we’ve done. Your template now generates output dynamically. Believe it or not, by inserting the range command inside of those curly braces, you’ve learned everything you need to know to build a theme. All that’s really left is understanding which template will be used to generate each content file and becoming familiar with the commands for the template engine.

-

And, if that were entirely true, this tutorial would be much shorter. There are a few things to know that will make creating a new template much easier. Don’t worry, though, that’s all to come.

-

Add Content to the Posts

-

We’re working with posts, which are in the content/post/ directory. That means that their section is “post” (and if we don’t do something weird, their type is also “post”).

-

Hugo uses the section and type to find the template file for every piece of content. Hugo will first look for a template file that matches the section or type name. If it can’t find one, then it will look in the _default/ directory. There are some twists that we’ll cover when we get to categories and tags, but for now we can assume that Hugo will try post/single.html, then _default/single.html.

-

Now that we know the search rule, let’s see what we actually have available:

-
$ find themes/zafta -name single.html | xargs ls -l
--rw-r--r--  1 quoha  staff  132 Sep 29 17:31 themes/zafta/layouts/_default/single.html
-

We could create a new template, post/single.html, or change the default. Since we don’t know of any other content types, let’s start with updating the default.

-

Remember, any content that we haven’t created a template for will end up using this template. That can be good or bad. Bad because I know that we’re going to be adding different types of content and we’re going to end up undoing some of the changes we’ve made. It’s good because we’ll be able to see immediate results. It’s also good to start here because we can start to build the basic layout for the site. As we add more content types, we’ll refactor this file and move logic around. Hugo makes that fairly painless, so we’ll accept the cost and proceed.

-

Please see the Hugo documentation on template rendering for all the details on determining which template to use. And, as the docs mention, if you’re building a single page application (SPA) web site, you can delete all of the other templates and work with just the default single page. That’s a refreshing amount of joy right there.

-

Update the Template File

-
$ vi themes/zafta/layouts/_default/single.html 
-<!DOCTYPE html>
-<html>
-<head>
-  <title>{{ .Title }}</title>
-</head>
-<body>
-  <h1>{{ .Title }}</h1>
-  {{ .Content }}
-</body>
-</html>
-:wq
-
-$
-

Build the web site and verify the results.

-
$ rm -rf public
-$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"}
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-2 pages created 
-0 tags created
-0 categories created
-in 4 ms
-
-$ find public -type f -name '*.html' | xargs ls -l
--rw-r--r--  1 quoha  staff   94 Sep 29 22:40 public/index.html
--rw-r--r--  1 quoha  staff  125 Sep 29 22:40 public/post/first/index.html
--rw-r--r--  1 quoha  staff    0 Sep 29 22:40 public/post/index.html
--rw-r--r--  1 quoha  staff  128 Sep 29 22:40 public/post/second/index.html
-
-$ cat public/post/first/index.html 
-<!DOCTYPE html>
-<html>
-<head>
-  <title>first</title>
-</head>
-<body>
-  <h1>first</h1>
-  <p>my first post</p>
-
-</body>
-</html>
-
-$ cat public/post/second/index.html 
-<!DOCTYPE html>
-<html>
-<head>
-  <title>second</title>
-</head>
-<body>
-  <h1>second</h1>
-  <p>my second post</p>
-
-</body>
-</html>
-$
-

Notice that the posts now have content. You can go to localhost:1313/post/first to verify.

-

Linking to Content

-

The posts are on the home page. Let’s add a link from there to the post. Since this is the home page, we’ll update its template.

-
$ vi themes/zafta/layouts/index.html
-<!DOCTYPE html>
-<html>
-<body>
-  {{ range first 10 .Data.Pages }}
-    <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
-  {{ end }}
-</body>
-</html>
-

Build the web site and verify the results.

-
$ rm -rf public
-$ hugo --verbose
-INFO: 2014/09/29 Using config file: /Users/quoha/Sites/zafta/config.toml
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/themes/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 syncing from /Users/quoha/Sites/zafta/static/ to /Users/quoha/Sites/zafta/public/
-INFO: 2014/09/29 found taxonomies: map[string]string{"tag":"tags", "category":"categories"}
-WARN: 2014/09/29 Unable to locate layout: [404.html theme/404.html]
-0 draft content 
-0 future content 
-2 pages created 
-0 tags created
-0 categories created
-in 4 ms
-
-$ find public -type f -name '*.html' | xargs ls -l
--rw-r--r--  1 quoha  staff  149 Sep 29 22:44 public/index.html
--rw-r--r--  1 quoha  staff  125 Sep 29 22:44 public/post/first/index.html
--rw-r--r--  1 quoha  staff    0 Sep 29 22:44 public/post/index.html
--rw-r--r--  1 quoha  staff  128 Sep 29 22:44 public/post/second/index.html
-
-$ cat public/index.html 
-<!DOCTYPE html>
-<html>
-<body>
-  
-    <h1><a href="/post/second/">second</a></h1>
-  
-    <h1><a href="/post/first/">first</a></h1>
-  
-</body>
-</html>
-
-$
-

Create a Post Listing

-

We have the posts displaying on the home page and on their own page. We also have a file public/post/index.html that is empty. Let’s make it show a list of all posts (not just the first ten).

-

We need to decide which template to update. This will be a listing, so it should be a list template. Let’s take a quick look and see which list templates are available.

-
$ find themes/zafta -name list.html | xargs ls -l
--rw-r--r--  1 quoha  staff  0 Sep 29 17:31 themes/zafta/layouts/_default/list.html
-

As with the single post, we have to decide to update _default/list.html or create post/list.html. We still don’t have multiple content types, so let’s stay consistent and update the default list template.

-

Creating Top Level Pages

-

Let’s add an “about” page and display it at the top level (as opposed to a sub-level like we did with posts).

-

The default in Hugo is to use the directory structure of the content/ directory to guide the location of the generated html in the public/ directory. Let’s verify that by creating an “about” page at the top level:

-
$ vi content/about.md 
-+++
-title = "about"
-description = "about this site"
-date = "2014-09-27"
-slug = "about time"
-+++
-
-## about us
-
-i'm speechless
-:wq
-

Generate the web site and verify the results.

-
$ find public -name '*.html' | xargs ls -l
--rw-rw-r--  1 mdhender  staff   334 Sep 27 15:08 public/about-time/index.html
--rw-rw-r--  1 mdhender  staff   527 Sep 27 15:08 public/index.html
--rw-rw-r--  1 mdhender  staff   358 Sep 27 15:08 public/post/first-post/index.html
--rw-rw-r--  1 mdhender  staff     0 Sep 27 15:08 public/post/index.html
--rw-rw-r--  1 mdhender  staff   342 Sep 27 15:08 public/post/second-post/index.html
-

Notice that the page wasn’t created at the top level. It was created in a sub-directory named ‘about-time/’. That name came from our slug. Hugo will use the slug to name the generated content. It’s a reasonable default, by the way, but we can learn a few things by fighting it for this file.

-

One other thing. Take a look at the home page.

-
$ cat public/index.html
-<!DOCTYPE html>
-<html>
-<body>
-    <h1><a href="http://localhost:1313/post/theme/">creating a new theme</a></h1>
-    <h1><a href="http://localhost:1313/about-time/">about</a></h1>
-    <h1><a href="http://localhost:1313/post/second-post/">second</a></h1>
-    <h1><a href="http://localhost:1313/post/first-post/">first</a></h1>
-<script>document.write('<script src="http://'
-        + (location.host || 'localhost').split(':')[0]
-		+ ':1313/livereload.js?mindelay=10"></'
-        + 'script>')</script></body>
-</html>
-

Notice that the “about” link is listed with the posts? That’s not desirable, so let’s change that first.

-
$ vi themes/zafta/layouts/index.html
-<!DOCTYPE html>
-<html>
-<body>
-  <h1>posts</h1>
-  {{ range first 10 .Data.Pages }}
-    {{ if eq .Type "post"}}
-      <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
-    {{ end }}
-  {{ end }}
-
-  <h1>pages</h1>
-  {{ range .Data.Pages }}
-    {{ if eq .Type "page" }}
-      <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
-    {{ end }}
-  {{ end }}
-</body>
-</html>
-:wq
-

Generate the web site and verify the results. The home page has two sections, posts and pages, and each section has the right set of headings and links in it.

-

But, that about page still renders to about-time/index.html.

-
$ find public -name '*.html' | xargs ls -l
--rw-rw-r--  1 mdhender  staff    334 Sep 27 15:33 public/about-time/index.html
--rw-rw-r--  1 mdhender  staff    645 Sep 27 15:33 public/index.html
--rw-rw-r--  1 mdhender  staff    358 Sep 27 15:33 public/post/first-post/index.html
--rw-rw-r--  1 mdhender  staff      0 Sep 27 15:33 public/post/index.html
--rw-rw-r--  1 mdhender  staff    342 Sep 27 15:33 public/post/second-post/index.html
-

Knowing that hugo is using the slug to generate the file name, the simplest solution is to change the slug. Let’s do it the hard way and change the permalink in the configuration file.

-
$ vi config.toml
-[permalinks]
-	page = "/:title/"
-	about = "/:filename/"
-

Generate the web site and verify that this didn’t work. Hugo lets “slug” or “URL” override the permalinks setting in the configuration file. Go ahead and comment out the slug in content/about.md, then generate the web site to get it to be created in the right place.

-

Sharing Templates

-

If you’ve been following along, you probably noticed that posts have titles in the browser and the home page doesn’t. That’s because we didn’t put the title in the home page’s template (layouts/index.html). That’s an easy thing to do, but let’s look at a different option.

-

We can put the common bits into a shared template that’s stored in the themes/zafta/layouts/partials/ directory.

- -

In Hugo, a partial is a sugar-coated template. Normally a template reference has a path specified. Partials are different. Hugo searches for them along a TODO defined search path. This makes it easier for end-users to override the theme’s presentation.

-
$ vi themes/zafta/layouts/partials/header.html
-<!DOCTYPE html>
-<html>
-<head>
-	<title>{{ .Title }}</title>
-</head>
-<body>
-:wq
-
-$ vi themes/zafta/layouts/partials/footer.html
-</body>
-</html>
-:wq
-

Update the Home Page Template to Use the Partials

-

The most noticeable difference between a template call and a partials call is the lack of path:

-
{{ template "theme/partials/header.html" . }}
-

versus

-
{{ partial "header.html" . }}
-

Both pass in the context.

-

Let’s change the home page template to use these new partials.

-
$ vi themes/zafta/layouts/index.html
-{{ partial "header.html" . }}
-
-  <h1>posts</h1>
-  {{ range first 10 .Data.Pages }}
-    {{ if eq .Type "post"}}
-      <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
-    {{ end }}
-  {{ end }}
-
-  <h1>pages</h1>
-  {{ range .Data.Pages }}
-    {{ if or (eq .Type "page") (eq .Type "about") }}
-      <h2><a href="{{ .Permalink }}">{{ .Type }} - {{ .Title }} - {{ .RelPermalink }}</a></h2>
-    {{ end }}
-  {{ end }}
-
-{{ partial "footer.html" . }}
-:wq
-

Generate the web site and verify the results. The title on the home page is now “your title here”, which comes from the “title” variable in the config.toml file.

-

Update the Default Single Template to Use the Partials

-
$ vi themes/zafta/layouts/_default/single.html
-{{ partial "header.html" . }}
-
-  <h1>{{ .Title }}</h1>
-  {{ .Content }}
-
-{{ partial "footer.html" . }}
-:wq
-

Generate the web site and verify the results. The title on the posts and the about page should both reflect the value in the markdown file.

-

Add “Date Published” to Posts

-

It’s common to have posts display the date that they were written or published, so let’s add that. The front matter of our posts has a variable named “date.” It’s usually the date the content was created, but let’s pretend that’s the value we want to display.

-

Add “Date Published” to the Template

-

We’ll start by updating the template used to render the posts. The template code will look like:

-
{{ .Date.Format "Mon, Jan 2, 2006" }}
-

Posts use the default single template, so we’ll change that file.

-
$ vi themes/zafta/layouts/_default/single.html
-{{ partial "header.html" . }}
-
-  <h1>{{ .Title }}</h1>
-  <h2>{{ .Date.Format "Mon, Jan 2, 2006" }}</h2>
-  {{ .Content }}
-
-{{ partial "footer.html" . }}
-:wq
-

Generate the web site and verify the results. The posts now have the date displayed in them. There’s a problem, though. The “about” page also has the date displayed.

-

As usual, there are a couple of ways to make the date display only on posts. We could do an “if” statement like we did on the home page. Another way would be to create a separate template for posts.

-

The “if” solution works for sites that have just a couple of content types. It aligns with the principle of “code for today,” too.

-

Let’s assume, though, that we’ve made our site so complex that we feel we have to create a new template type. In Hugo-speak, we’re going to create a section template.

-

Let’s restore the default single template before we forget.

-
$ mkdir themes/zafta/layouts/post
-$ vi themes/zafta/layouts/_default/single.html
-{{ partial "header.html" . }}
-
-  <h1>{{ .Title }}</h1>
-  {{ .Content }}
-
-{{ partial "footer.html" . }}
-:wq
-

Now we’ll update the post’s version of the single template. If you remember Hugo’s rules, the template engine will use this version over the default.

-
$ vi themes/zafta/layouts/post/single.html
-{{ partial "header.html" . }}
-
-  <h1>{{ .Title }}</h1>
-  <h2>{{ .Date.Format "Mon, Jan 2, 2006" }}</h2>
-  {{ .Content }}
-
-{{ partial "footer.html" . }}
-:wq
-
-

Note that we removed the date logic from the default template and put it in the post template. Generate the web site and verify the results. Posts have dates and the about page doesn’t.

-

Don’t Repeat Yourself

-

DRY is a good design goal and Hugo does a great job supporting it. Part of the art of a good template is knowing when to add a new template and when to update an existing one. While you’re figuring that out, accept that you’ll be doing some refactoring. Hugo makes that easy and fast, so it’s okay to delay splitting up a template.

- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- - - - - - diff --git a/2014/goisforlovers/index.html b/2014/goisforlovers/index.html deleted file mode 100644 index 90e58f0..0000000 --- a/2014/goisforlovers/index.html +++ /dev/null @@ -1,379 +0,0 @@ - - - - - - Jessica's home | (Hu)go Template Primer - - - - - - - - - - - - - - -
-
-
-
-

- - (Hu)go Template Primer - -

- -
-
-
- - -
-
- - -
-
-
-
-

Hugo uses the excellent Go html/template library for -its template engine. It is an extremely lightweight engine that provides a very -small amount of logic. In our experience that it is just the right amount of -logic to be able to create a good static website. If you have used other -template systems from different languages or frameworks you will find a lot of -similarities in Go templates.

-

This document is a brief primer on using Go templates. The Go docs -provide more details.

-

Introduction to Go Templates

-

Go templates provide an extremely simple template language. It adheres to the -belief that only the most basic of logic belongs in the template or view layer. -One consequence of this simplicity is that Go templates parse very quickly.

-

A unique characteristic of Go templates is they are content aware. Variables and -content will be sanitized depending on the context of where they are used. More -details can be found in the Go docs.

-

Basic Syntax

-

Golang templates are HTML files with the addition of variables and -functions.

-

Go variables and functions are accessible within {{ }}

-

Accessing a predefined variable “foo”:

-
{{ foo }}
-
-

Parameters are separated using spaces

-

Calling the add function with input of 1, 2:

-
{{ add 1 2 }}
-
-

Methods and fields are accessed via dot notation

-

Accessing the Page Parameter “bar”

-
{{ .Params.bar }}
-
-

Parentheses can be used to group items together

-
{{ if or (isset .Params "alt") (isset .Params "caption") }} Caption {{ end }}
-
-

Variables

-

Each Go template has a struct (object) made available to it. In hugo each -template is passed either a page or a node struct depending on which type of -page you are rendering. More details are available on the -variables page.

-

A variable is accessed by referencing the variable name.

-
<title>{{ .Title }}</title>
-
-

Variables can also be defined and referenced.

-
{{ $address := "123 Main St."}}
-{{ $address }}
-
-

Functions

-

Go template ship with a few functions which provide basic functionality. The Go -template system also provides a mechanism for applications to extend the -available functions with their own. Hugo template -functions provide some additional functionality we believe -are useful for building websites. Functions are called by using their name -followed by the required parameters separated by spaces. Template -functions cannot be added without recompiling hugo.

-

Example:

-
{{ add 1 2 }}
-
-

Includes

-

When including another template you will pass to it the data it will be -able to access. To pass along the current context please remember to -include a trailing dot. The templates location will always be starting at -the /layout/ directory within Hugo.

-

Example:

-
{{ template "chrome/header.html" . }}
-
-

Logic

-

Go templates provide the most basic iteration and conditional logic.

-

Iteration

-

Just like in Go, the Go templates make heavy use of range to iterate over -a map, array or slice. The following are different examples of how to use -range.

-

Example 1: Using Context

-
{{ range array }}
-    {{ . }}
-{{ end }}
-
-

Example 2: Declaring value variable name

-
{{range $element := array}}
-    {{ $element }}
-{{ end }}
-
-

Example 2: Declaring key and value variable name

-
{{range $index, $element := array}}
-    {{ $index }}
-    {{ $element }}
-{{ end }}
-
-

Conditionals

-

If, else, with, or, & and provide the framework for handling conditional -logic in Go Templates. Like range, each statement is closed with end.

-

Go Templates treat the following values as false:

-
    -
  • false
  • -
  • 0
  • -
  • any array, slice, map, or string of length zero
  • -
-

Example 1: If

-
{{ if isset .Params "title" }}<h4>{{ index .Params "title" }}</h4>{{ end }}
-
-

Example 2: If -> Else

-
{{ if isset .Params "alt" }}
-    {{ index .Params "alt" }}
-{{else}}
-    {{ index .Params "caption" }}
-{{ end }}
-
-

Example 3: And & Or

-
{{ if and (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
-
-

Example 4: With

-

An alternative way of writing “if” and then referencing the same value -is to use “with” instead. With rebinds the context . within its scope, -and skips the block if the variable is absent.

-

The first example above could be simplified as:

-
{{ with .Params.title }}<h4>{{ . }}</h4>{{ end }}
-
-

Example 5: If -> Else If

-
{{ if isset .Params "alt" }}
-    {{ index .Params "alt" }}
-{{ else if isset .Params "caption" }}
-    {{ index .Params "caption" }}
-{{ end }}
-
-

Pipes

-

One of the most powerful components of Go templates is the ability to -stack actions one after another. This is done by using pipes. Borrowed -from unix pipes, the concept is simple, each pipeline’s output becomes the -input of the following pipe.

-

Because of the very simple syntax of Go templates, the pipe is essential -to being able to chain together function calls. One limitation of the -pipes is that they only can work with a single value and that value -becomes the last parameter of the next pipeline.

-

A few simple examples should help convey how to use the pipe.

-

Example 1 :

-
{{ if eq 1 1 }} Same {{ end }}
-
-

is the same as

-
{{ eq 1 1 | if }} Same {{ end }}
-
-

It does look odd to place the if at the end, but it does provide a good -illustration of how to use the pipes.

-

Example 2 :

-
{{ index .Params "disqus_url" | html }}
-
-

Access the page parameter called “disqus_url” and escape the HTML.

-

Example 3 :

-
{{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
-Stuff Here
-{{ end }}
-
-

Could be rewritten as

-
{{  isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" | if }}
-Stuff Here
-{{ end }}
-
-

Context (aka. the dot)

-

The most easily overlooked concept to understand about Go templates is that {{ . }} -always refers to the current context. In the top level of your template this -will be the data set made available to it. Inside of a iteration it will have -the value of the current item. When inside of a loop the context has changed. . -will no longer refer to the data available to the entire page. If you need to -access this from within the loop you will likely want to set it to a variable -instead of depending on the context.

-

Example:

-
  {{ $title := .Site.Title }}
-  {{ range .Params.tags }}
-    <li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> - {{ $title }} </li>
-  {{ end }}
-
-

Notice how once we have entered the loop the value of {{ . }} has changed. We -have defined a variable outside of the loop so we have access to it from within -the loop.

-

Hugo Parameters

-

Hugo provides the option of passing values to the template language -through the site configuration (for sitewide values), or through the meta -data of each specific piece of content. You can define any values of any -type (supported by your front matter/config format) and use them however -you want to inside of your templates.

-

Using Content (page) Parameters

-

In each piece of content you can provide variables to be used by the -templates. This happens in the front matter.

-

An example of this is used in this documentation site. Most of the pages -benefit from having the table of contents provided. Sometimes the TOC just -doesn’t make a lot of sense. We’ve defined a variable in our front matter -of some pages to turn off the TOC from being displayed.

-

Here is the example front matter:

-
---
-title: "Permalinks"
-date: "2013-11-18"
-aliases:
-  - "/doc/permalinks/"
-groups: ["extras"]
-groups_weight: 30
-notoc: true
----
-

Here is the corresponding code inside of the template:

-
  {{ if not .Params.notoc }}
-    <div id="toc" class="well col-md-4 col-sm-6">
-    {{ .TableOfContents }}
-    </div>
-  {{ end }}
-
-

Using Site (config) Parameters

-

In your top-level configuration file (eg, config.yaml) you can define site -parameters, which are values which will be available to you in chrome.

-

For instance, you might declare:

-
params:
-  CopyrightHTML: "Copyright &#xA9; 2013 John Doe. All Rights Reserved."
-  TwitterUser: "spf13"
-  SidebarRecentLimit: 5
-

Within a footer layout, you might then declare a <footer> which is only -provided if the CopyrightHTML parameter is provided, and if it is given, -you would declare it to be HTML-safe, so that the HTML entity is not escaped -again. This would let you easily update just your top-level config file each -January 1st, instead of hunting through your templates.

-
{{if .Site.Params.CopyrightHTML}}<footer>
-<div class="text-center">{{.Site.Params.CopyrightHTML | safeHtml}}</div>
-</footer>{{end}}
-

An alternative way of writing the “if” and then referencing the same value -is to use “with” instead. With rebinds the context . within its scope, -and skips the block if the variable is absent:

-
{{with .Site.Params.TwitterUser}}<span class="twitter">
-<a href="https://twitter.com/{{.}}" rel="author">
-<img src="/images/twitter.png" width="48" height="48" title="Twitter: {{.}}"
- alt="Twitter"></a>
-</span>{{end}}
-

Finally, if you want to pull “magic constants” out of your layouts, you can do -so, such as in this example:

-
<nav class="recent">
-  <h1>Recent Posts</h1>
-  <ul>{{range first .Site.Params.SidebarRecentLimit .Site.Recent}}
-    <li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
-  {{end}}</ul>
-</nav>
-
-
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - - -
-
-

Related posts

- - -

Getting Started with Hugo

- - -
-
- - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- - - - - - diff --git a/2014/hugoisforlovers/index.html b/2014/hugoisforlovers/index.html deleted file mode 100644 index 5a2f02e..0000000 --- a/2014/hugoisforlovers/index.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - Jessica's home | Getting Started with Hugo - - - - - - - - - - - - - - -
-
-
-
-

- - Getting Started with Hugo - -

- -
-
-
- - -
-
- - -
-
-
-
-

Step 1. Install Hugo

-

Go to Hugo releases and download the -appropriate version for your OS and architecture.

-

Save it somewhere specific as we will be using it in the next step.

-

More complete instructions are available at Install Hugo

-

Step 2. Build the Docs

-

Hugo has its own example site which happens to also be the documentation site -you are reading right now.

-

Follow the following steps:

-
    -
  1. Clone the Hugo repository
  2. -
  3. Go into the repo
  4. -
  5. Run hugo in server mode and build the docs
  6. -
  7. Open your browser to http://localhost:1313
  8. -
-

Corresponding pseudo commands:

-
git clone https://github.com/spf13/hugo
-cd hugo
-/path/to/where/you/installed/hugo server --source=./docs
-> 29 pages created
-> 0 tags index created
-> in 27 ms
-> Web Server is available at http://localhost:1313
-> Press ctrl+c to stop
-
-

Once you’ve gotten here, follow along the rest of this page on your local build.

-

Step 3. Change the docs site

-

Stop the Hugo process by hitting Ctrl+C.

-

Now we are going to run hugo again, but this time with hugo in watch mode.

-
/path/to/hugo/from/step/1/hugo server --source=./docs --watch
-> 29 pages created
-> 0 tags index created
-> in 27 ms
-> Web Server is available at http://localhost:1313
-> Watching for changes in /Users/spf13/Code/hugo/docs/content
-> Press ctrl+c to stop
-
-

Open your favorite editor and change one of the source -content pages. How about changing this very file to fix the typo. How about changing this very file to fix the typo.

-

Content files are found in docs/content/. Unless otherwise specified, files -are located at the same relative location as the url, in our case -docs/content/overview/quickstart.md.

-

Change and save this file.. Notice what happened in your terminal.

-
> Change detected, rebuilding site
-
-> 29 pages created
-> 0 tags index created
-> in 26 ms
-
-

Refresh the browser and observe that the typo is now fixed.

-

Notice how quick that was. Try to refresh the site before it’s finished building. I double dare you. -Having nearly instant feedback enables you to have your creativity flow without waiting for long builds.

-

Step 4. Have fun

-

The best way to learn something is to play with it.

- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - - -
-
-

Related posts

- - -

(Hu)go Template Primer

- - -
-
- - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- - - - - - diff --git a/2014/migrate-from-jekyll/index.html b/2014/migrate-from-jekyll/index.html deleted file mode 100644 index 75780d4..0000000 --- a/2014/migrate-from-jekyll/index.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - Jessica's home | Migrate to Hugo from Jekyll - - - - - - - - - - - - - - -
-
-
-
-

- - Migrate to Hugo from Jekyll - -

- -
-
-
- - -
-
- - -
-
-
-
-

Move static content to static

-

Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. -With Jekyll, something that looked like

-
▾ <root>/
-    ▾ images/
-        logo.png
-
-

should become

-
▾ <root>/
-    ▾ static/
-        ▾ images/
-            logo.png
-
-

Additionally, you’ll want any files that should reside at the root (such as CNAME) to be moved to static.

-

Create your Hugo configuration file

-

Hugo can read your configuration as JSON, YAML or TOML. Hugo supports parameters custom configuration too. Refer to the Hugo configuration documentation for details.

-

Set your configuration publish folder to _site

-

The default is for Jekyll to publish to _site and for Hugo to publish to public. If, like me, you have _site mapped to a git submodule on the gh-pages branch, you’ll want to do one of two alternatives:

-
    -
  1. -

    Change your submodule to point to map gh-pages to public instead of _site (recommended).

    -
     git submodule deinit _site
    - git rm _site
    - git submodule add -b gh-pages git@github.com:your-username/your-repo.git public
    -
    -
  2. -
  3. -

    Or, change the Hugo configuration to use _site instead of public.

    -
     {
    -     ..
    -     "publishdir": "_site",
    -     ..
    - }
    -
    -
  4. -
-

Convert Jekyll templates to Hugo templates

-

That’s the bulk of the work right here. The documentation is your friend. You should refer to Jekyll’s template documentation if you need to refresh your memory on how you built your blog and Hugo’s template to learn Hugo’s way.

-

As a single reference data point, converting my templates for heyitsalex.net took me no more than a few hours.

-

Convert Jekyll plugins to Hugo shortcodes

-

Jekyll has plugins; Hugo has shortcodes. It’s fairly trivial to do a port.

-

Implementation

-

As an example, I was using a custom image_tag plugin to generate figures with caption when running Jekyll. As I read about shortcodes, I found Hugo had a nice built-in shortcode that does exactly the same thing.

-

Jekyll’s plugin:

-
module Jekyll
-  class ImageTag < Liquid::Tag
-    @url = nil
-    @caption = nil
-    @class = nil
-    @link = nil
-    // Patterns
-    IMAGE_URL_WITH_CLASS_AND_CAPTION =
-    IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK = /(\w+)(\s+)((https?:\/\/|\/)(\S+))(\s+)"(.*?)"(\s+)->((https?:\/\/|\/)(\S+))(\s*)/i
-    IMAGE_URL_WITH_CAPTION = /((https?:\/\/|\/)(\S+))(\s+)"(.*?)"/i
-    IMAGE_URL_WITH_CLASS = /(\w+)(\s+)((https?:\/\/|\/)(\S+))/i
-    IMAGE_URL = /((https?:\/\/|\/)(\S+))/i
-    def initialize(tag_name, markup, tokens)
-      super
-      if markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION_AND_LINK
-        @class   = $1
-        @url     = $3
-        @caption = $7
-        @link = $9
-      elsif markup =~ IMAGE_URL_WITH_CLASS_AND_CAPTION
-        @class   = $1
-        @url     = $3
-        @caption = $7
-      elsif markup =~ IMAGE_URL_WITH_CAPTION
-        @url     = $1
-        @caption = $5
-      elsif markup =~ IMAGE_URL_WITH_CLASS
-        @class = $1
-        @url   = $3
-      elsif markup =~ IMAGE_URL
-        @url = $1
-      end
-    end
-    def render(context)
-      if @class
-        source = "<figure class='#{@class}'>"
-      else
-        source = "<figure>"
-      end
-      if @link
-        source += "<a href=\"#{@link}\">"
-      end
-      source += "<img src=\"#{@url}\">"
-      if @link
-        source += "</a>"
-      end
-      source += "<figcaption>#{@caption}</figcaption>" if @caption
-      source += "</figure>"
-      source
-    end
-  end
-end
-Liquid::Template.register_tag('image', Jekyll::ImageTag)
-
-

is written as this Hugo shortcode:

-
<!-- image -->
-<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
-    {{ with .Get "link"}}<a href="{{.}}">{{ end }}
-        <img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}"{{ end }} />
-    {{ if .Get "link"}}</a>{{ end }}
-    {{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
-    <figcaption>{{ if isset .Params "title" }}
-        {{ .Get "title" }}{{ end }}
-        {{ if or (.Get "caption") (.Get "attr")}}<p>
-        {{ .Get "caption" }}
-        {{ with .Get "attrlink"}}<a href="{{.}}"> {{ end }}
-            {{ .Get "attr" }}
-        {{ if .Get "attrlink"}}</a> {{ end }}
-        </p> {{ end }}
-    </figcaption>
-    {{ end }}
-</figure>
-<!-- image -->
-
-

Usage

-

I simply changed:

-
{% image full http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg "One of my favorite touristy-type photos. I secretly waited for the good light while we were "having fun" and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." ->http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/ %}
-
-

to this (this example uses a slightly extended version named fig, different than the built-in figure):

-
{{% fig class="full" src="http://farm5.staticflickr.com/4136/4829260124_57712e570a_o_d.jpg" title="One of my favorite touristy-type photos. I secretly waited for the good light while we were having fun and took this. Only regret: a stupid pole in the top-left corner of the frame I had to clumsily get rid of at post-processing." link="http://www.flickr.com/photos/alexnormand/4829260124/in/set-72157624547713078/" %}}
-
-

As a bonus, the shortcode named parameters are, arguably, more readable.

-

Finishing touches

-

Fix content

-

Depending on the amount of customization that was done with each post with Jekyll, this step will require more or less effort. There are no hard and fast rules here except that hugo server --watch is your friend. Test your changes and fix errors as needed.

-

Clean up

-

You’ll want to remove the Jekyll configuration at this point. If you have anything else that isn’t used, delete it.

-

A practical example in a diff

-

Hey, it’s Alex was migrated in less than a father-with-kids day from Jekyll to Hugo. You can see all the changes (and screw-ups) by looking at this diff.

- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- - - - - - From 87bb12117cbb7bd062af6643cfbf5d24eaf719ec Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:12:44 +0800 Subject: [PATCH 07/17] Delete 2022/my-first-post directory --- 2022/my-first-post/index.html | 167 ---------------------------------- 1 file changed, 167 deletions(-) delete mode 100644 2022/my-first-post/index.html diff --git a/2022/my-first-post/index.html b/2022/my-first-post/index.html deleted file mode 100644 index 4c0026a..0000000 --- a/2022/my-first-post/index.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - Jessica's home | My First Post - - - - - - - - - - - - - - -
-
-
-
-

- - My First Post - -

- -
-
-
- - -
-
- - -
-
-
-
-

HUGO blog theme

-

A free blog theme for HUGO, with tags, archives, last posts… Using Bulma CSS framework.

-

HUGO blog theme by JeffProd.com

-

Install -Install HUGO (https://gohugo.io/) then :

-

hugo new site myblog -cd myblog -git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod -In the file config.toml add the lines :

-

theme = “jeffprod”

-

[permalinks] -post = “/:year/:filename”

-

[taxonomies] -tag = “tags” -archive = “archives” -Write blog posts -hugo new post/my-first-post.md -And edit this new file content/post/my-first-post.md. You can use HUGO shortcodes and Markdown.

-

Render -hugo server -Then go to http://localhost:1313

-

Create the web site -hugo -All files to publish are in public/ directory.

-

Donate -https://en.jeffprod.com/donate/

-

Credits -Background image by https://pixabay.com

-

See Also -Bootstrap Blog Theme -Academia Hugo -Academic -Amperage -Bodhi Theme

- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- - - - - - From a502461d3e345e7e5cc7c228de34837fd103d3c0 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:02 +0800 Subject: [PATCH 08/17] Delete 404.html --- 404.html | 69 -------------------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 404.html diff --git a/404.html b/404.html deleted file mode 100644 index 591bfb7..0000000 --- a/404.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - Jessica's home | 404 Page not found - - - - - - - - - - - - - - -
-
-
-
-

- - 404 Page not found - -

- -
-
-
- - -
-
- - -
-
- Page not found... -
-
- - -
-
- - - - - - From 81bdcbaf35d1b8a6b790068b0f9fb52bf12b619d Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:25 +0800 Subject: [PATCH 09/17] Delete archives directory --- archives/2014/index.html | 196 --------------------------------------- archives/2014/index.xml | 59 ------------ archives/2022/index.html | 151 ------------------------------ archives/2022/index.xml | 29 ------ archives/index.html | 131 -------------------------- archives/index.xml | 32 ------- 6 files changed, 598 deletions(-) delete mode 100644 archives/2014/index.html delete mode 100644 archives/2014/index.xml delete mode 100644 archives/2022/index.html delete mode 100644 archives/2022/index.xml delete mode 100644 archives/index.html delete mode 100644 archives/index.xml diff --git a/archives/2014/index.html b/archives/2014/index.html deleted file mode 100644 index f7e15e4..0000000 --- a/archives/2014/index.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - Jessica's home | 2014 - - - - - - - - - - - - - - - -
-
-
-
-

- - Archive 2014 - -

- -
-
-
- - -
-
- - - -
-
-
-
- -
-
-
-

Creating a New Theme

-

- Published at September 28, 2014 · -  34 min read -

-

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. -We’ll start with creating a new site with a very basic template....

-
-
-
-
- -
-
-
-

Migrating from Jekyll

-

- Published at March 10, 2014 · -  4 min read -

-

Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like -▾ <root>/ ▾ images/ logo.png should become -▾ <root>/ ▾ static/ ▾ images/ logo.png Additionally, you’ll want any files that should reside at the root (such as CNAME) to be moved to static....

-
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - - -
-
- - - - - - diff --git a/archives/2014/index.xml b/archives/2014/index.xml deleted file mode 100644 index 63ec23d..0000000 --- a/archives/2014/index.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - 2014 on Jessica's home - https://twojessica.github.io/archives/2014/ - Recent content in 2014 on Jessica's home - Hugo -- gohugo.io - en-us - Sun, 28 Sep 2014 00:00:00 +0000 - - - - - - Creating a New Theme - https://twojessica.github.io/2014/creating-a-new-theme/ - Sun, 28 Sep 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/creating-a-new-theme/ - Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I&rsquo;ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won&rsquo;t cover using CSS to style your theme. -We&rsquo;ll start with creating a new site with a very basic template. - - - - Migrate to Hugo from Jekyll - https://twojessica.github.io/2014/migrate-from-jekyll/ - Mon, 10 Mar 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/migrate-from-jekyll/ - Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like -▾ &lt;root&gt;/ ▾ images/ logo.png should become -▾ &lt;root&gt;/ ▾ static/ ▾ images/ logo.png Additionally, you&rsquo;ll want any files that should reside at the root (such as CNAME) to be moved to static. - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - diff --git a/archives/2022/index.html b/archives/2022/index.html deleted file mode 100644 index 591114b..0000000 --- a/archives/2022/index.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - Jessica's home | 2022 - - - - - - - - - - - - - - - -
-
-
-
-

- - Archive 2022 - -

- -
-
-
- - -
-
- - - -
-
-
-
- -
-
-
-

My First Post

-

- Published at January 23, 2022 · -  1 min read -

-

HUGO blog theme A free blog theme for HUGO, with tags, archives, last posts… Using Bulma CSS framework. -HUGO blog theme by JeffProd.com -Install Install HUGO (https://gohugo.io/) then : -hugo new site myblog cd myblog git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod In the file config.toml add the lines : -theme = “jeffprod” -[permalinks] post = “/:year/:filename” -[taxonomies] tag = “tags” archive = “archives” Write blog posts hugo new post/my-first-post.md And edit this new file content/post/my-first-post....

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - - -
-
- - - - - - diff --git a/archives/2022/index.xml b/archives/2022/index.xml deleted file mode 100644 index ec71d79..0000000 --- a/archives/2022/index.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - 2022 on Jessica's home - https://twojessica.github.io/archives/2022/ - Recent content in 2022 on Jessica's home - Hugo -- gohugo.io - en-us - Sun, 23 Jan 2022 01:09:49 +0800 - - - - - - My First Post - https://twojessica.github.io/2022/my-first-post/ - Sun, 23 Jan 2022 01:09:49 +0800 - - https://twojessica.github.io/2022/my-first-post/ - HUGO blog theme A free blog theme for HUGO, with tags, archives, last posts… Using Bulma CSS framework. -HUGO blog theme by JeffProd.com -Install Install HUGO (https://gohugo.io/) then : -hugo new site myblog cd myblog git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod In the file config.toml add the lines : -theme = &ldquo;jeffprod&rdquo; -[permalinks] post = &ldquo;/:year/:filename&rdquo; -[taxonomies] tag = &ldquo;tags&rdquo; archive = &ldquo;archives&rdquo; Write blog posts hugo new post/my-first-post.md And edit this new file content/post/my-first-post. - - - - diff --git a/archives/index.html b/archives/index.html deleted file mode 100644 index 8a7cddc..0000000 --- a/archives/index.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - Jessica's home | Archives - - - - - - - - - - - - - - - -
-
-
-
-

- - Archive Archives - -

- -
-
-
- - -
-
- - - -
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - - -
-
- - - - - - diff --git a/archives/index.xml b/archives/index.xml deleted file mode 100644 index 5bbc3bc..0000000 --- a/archives/index.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - Archives on Jessica's home - https://twojessica.github.io/archives/ - Recent content in Archives on Jessica's home - Hugo -- gohugo.io - en-us - Sun, 23 Jan 2022 01:09:49 +0800 - - - - - - 2022 - https://twojessica.github.io/archives/2022/ - Sun, 23 Jan 2022 01:09:49 +0800 - - https://twojessica.github.io/archives/2022/ - - - - - 2014 - https://twojessica.github.io/archives/2014/ - Sun, 28 Sep 2014 00:00:00 +0000 - - https://twojessica.github.io/archives/2014/ - - - - - From 3b33304dd61d34bf13b450797e6b193da4eb1aa1 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:33 +0800 Subject: [PATCH 10/17] Delete css directory --- css/blog.css | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 css/blog.css diff --git a/css/blog.css b/css/blog.css deleted file mode 100644 index 1f41d53..0000000 --- a/css/blog.css +++ /dev/null @@ -1,11 +0,0 @@ -html,body { - font-family: 'Open Sans', sans-serif; - background: #F0F2F4; - } -.hero-body { - background-position: center; - background-size: cover; - background-repeat: no-repeat; - } -.mysocial { color: hsl(0, 0%, 100%);} -.mysocial:hover { color: hsl(0, 0%, 71%) } From 4e5e37fbe1756789c5750fad78571028a25a11a9 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:41 +0800 Subject: [PATCH 11/17] Delete img directory --- img/bg-blog.jpg | Bin 96778 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 img/bg-blog.jpg diff --git a/img/bg-blog.jpg b/img/bg-blog.jpg deleted file mode 100644 index 791b513fdf7ad34e7129ff87cfadaad0d7fd6cbf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 96778 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 SxTaysqqHrkH>ZV&uWt*|@o%MspUaQSK&TqK* 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�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 z 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 From b7433e21ce20d7e7477addd813ac5a8599f850a3 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:48 +0800 Subject: [PATCH 12/17] Delete page/1 directory --- page/1/index.html | 1 - 1 file changed, 1 deletion(-) delete mode 100644 page/1/index.html diff --git a/page/1/index.html b/page/1/index.html deleted file mode 100644 index 021a704..0000000 --- a/page/1/index.html +++ /dev/null @@ -1 +0,0 @@ -https://twojessica.github.io/ \ No newline at end of file From 5856a7ea0d65a8dad8c4d1c8857a4f74fddbd89e Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:13:57 +0800 Subject: [PATCH 13/17] Delete post directory --- post/index.html | 136 ------------------------------------------------ post/index.xml | 74 -------------------------- 2 files changed, 210 deletions(-) delete mode 100644 post/index.html delete mode 100644 post/index.xml diff --git a/post/index.html b/post/index.html deleted file mode 100644 index a2689ed..0000000 --- a/post/index.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - Jessica's home | Posts - - - - - - - - - - - - - - - -
-
-
-
-

- - Posts - -

- -
-
-
- - -
-
- - - -
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
- - - - -
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/post/index.xml b/post/index.xml deleted file mode 100644 index db931cd..0000000 --- a/post/index.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - Posts on Jessica's home - https://twojessica.github.io/post/ - Recent content in Posts on Jessica's home - Hugo -- gohugo.io - en-us - Sun, 23 Jan 2022 01:09:49 +0800 - - - - - - Creating a New Theme - https://twojessica.github.io/2014/creating-a-new-theme/ - Sun, 28 Sep 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/creating-a-new-theme/ - Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I&rsquo;ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won&rsquo;t cover using CSS to style your theme. -We&rsquo;ll start with creating a new site with a very basic template. - - - - Migrate to Hugo from Jekyll - https://twojessica.github.io/2014/migrate-from-jekyll/ - Mon, 10 Mar 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/migrate-from-jekyll/ - Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like -▾ &lt;root&gt;/ ▾ images/ logo.png should become -▾ &lt;root&gt;/ ▾ static/ ▾ images/ logo.png Additionally, you&rsquo;ll want any files that should reside at the root (such as CNAME) to be moved to static. - - - - My First Post - https://twojessica.github.io/2022/my-first-post/ - Sun, 23 Jan 2022 01:09:49 +0800 - - https://twojessica.github.io/2022/my-first-post/ - HUGO blog theme A free blog theme for HUGO, with tags, archives, last posts… Using Bulma CSS framework. -HUGO blog theme by JeffProd.com -Install Install HUGO (https://gohugo.io/) then : -hugo new site myblog cd myblog git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod In the file config.toml add the lines : -theme = &ldquo;jeffprod&rdquo; -[permalinks] post = &ldquo;/:year/:filename&rdquo; -[taxonomies] tag = &ldquo;tags&rdquo; archive = &ldquo;archives&rdquo; Write blog posts hugo new post/my-first-post.md And edit this new file content/post/my-first-post. - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - From 680d1ad98d5d3eedc55d96cecc44cbe81c7d36c3 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:14:09 +0800 Subject: [PATCH 14/17] Delete tags directory --- tags/development/index.html | 165 ------------------------------------ tags/development/index.xml | 38 --------- tags/go/index.html | 165 ------------------------------------ tags/go/index.xml | 38 --------- tags/golang/index.html | 165 ------------------------------------ tags/golang/index.xml | 38 --------- tags/hugo/index.html | 150 -------------------------------- tags/hugo/index.xml | 28 ------ tags/index.html | 131 ---------------------------- tags/index.xml | 68 --------------- tags/templates/index.html | 146 ------------------------------- tags/templates/index.xml | 24 ------ tags/themes/index.html | 146 ------------------------------- tags/themes/index.xml | 24 ------ 14 files changed, 1326 deletions(-) delete mode 100644 tags/development/index.html delete mode 100644 tags/development/index.xml delete mode 100644 tags/go/index.html delete mode 100644 tags/go/index.xml delete mode 100644 tags/golang/index.html delete mode 100644 tags/golang/index.xml delete mode 100644 tags/hugo/index.html delete mode 100644 tags/hugo/index.xml delete mode 100644 tags/index.html delete mode 100644 tags/index.xml delete mode 100644 tags/templates/index.html delete mode 100644 tags/templates/index.xml delete mode 100644 tags/themes/index.html delete mode 100644 tags/themes/index.xml diff --git a/tags/development/index.html b/tags/development/index.html deleted file mode 100644 index 260034f..0000000 --- a/tags/development/index.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - Jessica's home | development - - - - - - - - - - - - - - - -
-
-
-
-

- - #development - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/development/index.xml b/tags/development/index.xml deleted file mode 100644 index ab41655..0000000 --- a/tags/development/index.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - development on Jessica's home - https://twojessica.github.io/tags/development/ - Recent content in development on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - diff --git a/tags/go/index.html b/tags/go/index.html deleted file mode 100644 index e7d96e3..0000000 --- a/tags/go/index.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - Jessica's home | go - - - - - - - - - - - - - - - -
-
-
-
-

- - #go - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/go/index.xml b/tags/go/index.xml deleted file mode 100644 index 685b28f..0000000 --- a/tags/go/index.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - go on Jessica's home - https://twojessica.github.io/tags/go/ - Recent content in go on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - diff --git a/tags/golang/index.html b/tags/golang/index.html deleted file mode 100644 index 1ec3d13..0000000 --- a/tags/golang/index.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - Jessica's home | golang - - - - - - - - - - - - - - - -
-
-
-
-

- - #golang - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/golang/index.xml b/tags/golang/index.xml deleted file mode 100644 index ca42203..0000000 --- a/tags/golang/index.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - golang on Jessica's home - https://twojessica.github.io/tags/golang/ - Recent content in golang on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - diff --git a/tags/hugo/index.html b/tags/hugo/index.html deleted file mode 100644 index ad3b04b..0000000 --- a/tags/hugo/index.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - Jessica's home | hugo - - - - - - - - - - - - - - - -
-
-
-
-

- - #hugo - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/hugo/index.xml b/tags/hugo/index.xml deleted file mode 100644 index 218b2cd..0000000 --- a/tags/hugo/index.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - hugo on Jessica's home - https://twojessica.github.io/tags/hugo/ - Recent content in hugo on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - Getting Started with Hugo - https://twojessica.github.io/2014/hugoisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/hugoisforlovers/ - Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands: - - - - diff --git a/tags/index.html b/tags/index.html deleted file mode 100644 index aa4a053..0000000 --- a/tags/index.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - Jessica's home | Tags - - - - - - - - - - - - - - - -
-
-
-
-

- - #Tags - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/index.xml b/tags/index.xml deleted file mode 100644 index 0a4aa64..0000000 --- a/tags/index.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - Tags on Jessica's home - https://twojessica.github.io/tags/ - Recent content in Tags on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - development - https://twojessica.github.io/tags/development/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/development/ - - - - - go - https://twojessica.github.io/tags/go/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/go/ - - - - - golang - https://twojessica.github.io/tags/golang/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/golang/ - - - - - hugo - https://twojessica.github.io/tags/hugo/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/hugo/ - - - - - templates - https://twojessica.github.io/tags/templates/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/templates/ - - - - - themes - https://twojessica.github.io/tags/themes/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/tags/themes/ - - - - - diff --git a/tags/templates/index.html b/tags/templates/index.html deleted file mode 100644 index a1f96af..0000000 --- a/tags/templates/index.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Jessica's home | templates - - - - - - - - - - - - - - - -
-
-
-
-

- - #templates - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/templates/index.xml b/tags/templates/index.xml deleted file mode 100644 index e9ea26d..0000000 --- a/tags/templates/index.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - templates on Jessica's home - https://twojessica.github.io/tags/templates/ - Recent content in templates on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - diff --git a/tags/themes/index.html b/tags/themes/index.html deleted file mode 100644 index fb997dc..0000000 --- a/tags/themes/index.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - Jessica's home | themes - - - - - - - - - - - - - - - -
-
-
-
-

- - #themes - -

- -
-
-
- - -
-
- - - - -
-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - diff --git a/tags/themes/index.xml b/tags/themes/index.xml deleted file mode 100644 index 214b6eb..0000000 --- a/tags/themes/index.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - themes on Jessica's home - https://twojessica.github.io/tags/themes/ - Recent content in themes on Jessica's home - Hugo -- gohugo.io - en-us - Wed, 02 Apr 2014 00:00:00 +0000 - - - - - - (Hu)go Template Primer - https://twojessica.github.io/2014/goisforlovers/ - Wed, 02 Apr 2014 00:00:00 +0000 - - https://twojessica.github.io/2014/goisforlovers/ - Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates. - - - - From e70f1315609e9066695e6bcec591332952f70267 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:14:17 +0800 Subject: [PATCH 15/17] Delete index.html --- index.html | 228 ----------------------------------------------------- 1 file changed, 228 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index e0e0d86..0000000 --- a/index.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - Jessica's home | Jessica's home - - - - - - - - - - - - - - - -
-
-
-
-

- - Jessica's home - -

- -
-
-
- - -
-
- - - -
-
-
-
-

Welcome to my blog !

-
- -
-
-
-

My First Post

-

- Published at January 23, 2022 · -  1 min read -

-

HUGO blog theme A free blog theme for HUGO, with tags, archives, last posts… Using Bulma CSS framework. -HUGO blog theme by JeffProd.com -Install Install HUGO (https://gohugo.io/) then : -hugo new site myblog cd myblog git clone https://github.com/Tazeg/hugo-blog-jeffprod.git themes/jeffprod In the file config.toml add the lines : -theme = “jeffprod” -[permalinks] post = “/:year/:filename” -[taxonomies] tag = “tags” archive = “archives” Write blog posts hugo new post/my-first-post.md And edit this new file content/post/my-first-post....

-
-
-
- -
-
-
-

Creating a New Theme

-

- Published at September 28, 2014 · -  34 min read -

-

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. I won’t cover using CSS to style your theme. -We’ll start with creating a new site with a very basic template....

-
-
-
- -
-
-
-

Getting Started with Hugo

-

- Published at April 2, 2014 · -  2 min read -

-

Step 1. Install Hugo Go to Hugo releases and download the appropriate version for your OS and architecture. -Save it somewhere specific as we will be using it in the next step. -More complete instructions are available at Install Hugo -Step 2. Build the Docs Hugo has its own example site which happens to also be the documentation site you are reading right now. -Follow the following steps: - Clone the Hugo repository Go into the repo Run hugo in server mode and build the docs Open your browser to http://localhost:1313 Corresponding pseudo commands:...

-
-
-
- -
-
-
-

(Hu)go Template Primer

-

- Published at April 2, 2014 · -  7 min read -

-

Hugo uses the excellent Go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. If you have used other template systems from different languages or frameworks you will find a lot of similarities in Go templates. -This document is a brief primer on using Go templates....

-
-
-
- -
-
-
-

Migrating from Jekyll

-

- Published at March 10, 2014 · -  4 min read -

-

Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like -▾ <root>/ ▾ images/ logo.png should become -▾ <root>/ ▾ static/ ▾ images/ logo.png Additionally, you’ll want any files that should reside at the root (such as CNAME) to be moved to static....

-
-
-
- -
-
-
-
-
-
-

Tags

-
- - development - - go - - golang - - hugo - - templates - - themes - -
-
-

-
-
-

Recent posts

- -

My First Post

- - -

Creating a New Theme

- - -

Getting Started with Hugo

- - -

(Hu)go Template Primer

- - -

Migrate to Hugo from Jekyll

- - -
-
-
-
-
-

Archives

- - 2022 (1)
- - 2014 (4)
- -
-
- -
-
-
-
- -
-
- - -
-
- -
-
-

-    -    -    -

- Copyright © Jessica's home 2022 - Theme by JeffProd.com - - About -

-
-
- - - - From b8095de521657c47c88c278dfa1797c0f8128883 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:14:26 +0800 Subject: [PATCH 16/17] Delete index.xml --- index.xml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 index.xml diff --git a/index.xml b/index.xml deleted file mode 100644 index 0e80941..0000000 --- a/index.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - Jessica's home - https://twojessica.github.io/ - Recent content on Jessica's home - Hugo -- gohugo.io - en-us - Sun, 23 Jan 2022 01:09:49 +0800 - - - - - - Posts - https://twojessica.github.io/post/ - Sun, 23 Jan 2022 01:09:49 +0800 - - https://twojessica.github.io/post/ - - - - - From 6bc4fdf2f5cab42eafaf39a0af1d4f0a6229d760 Mon Sep 17 00:00:00 2001 From: TwoJessica <98216933+TwoJessica@users.noreply.github.com> Date: Sun, 23 Jan 2022 21:14:35 +0800 Subject: [PATCH 17/17] Delete sitemap.xml --- sitemap.xml | 56 ----------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 sitemap.xml diff --git a/sitemap.xml b/sitemap.xml deleted file mode 100644 index 991e943..0000000 --- a/sitemap.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - https://twojessica.github.io/2014/creating-a-new-theme/ - 2014-09-28T00:00:00+00:00 - - https://twojessica.github.io/2014/migrate-from-jekyll/ - 2014-03-10T00:00:00+00:00 - - https://twojessica.github.io/archives/2022/ - 2022-01-23T01:09:49+08:00 - - https://twojessica.github.io/archives/ - 2022-01-23T01:09:49+08:00 - - https://twojessica.github.io/ - 2022-01-23T01:09:49+08:00 - - https://twojessica.github.io/2022/my-first-post/ - 2022-01-23T01:09:49+08:00 - - https://twojessica.github.io/post/ - 2022-01-23T01:09:49+08:00 - - https://twojessica.github.io/archives/2014/ - 2014-09-28T00:00:00+00:00 - - https://twojessica.github.io/2014/goisforlovers/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/development/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/2014/hugoisforlovers/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/go/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/golang/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/hugo/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/templates/ - 2014-04-02T00:00:00+00:00 - - https://twojessica.github.io/tags/themes/ - 2014-04-02T00:00:00+00:00 - -