From e1fe3e1bc589bdf25efdaad7383deb2e5fd917fe Mon Sep 17 00:00:00 2001 From: Thomas Sindt Date: Mon, 25 May 2026 22:53:28 +0200 Subject: [PATCH] fix it --- .gitmodules | 3 + homepage/content/_index.md | 20 + homepage/content/gedanken/_index.md | 5 + .../content/gedanken/creating-a-new-theme.md | 1145 ++++++ homepage/content/gedanken/diagrams.md | 221 ++ homepage/content/gedanken/hugoisforlovers.md | 82 + homepage/content/gedanken/introduce-hugo.md | 1141 ++++++ .../content/gedanken/migrate-from-jekyll.md | 179 + .../{posts => gedanken}/my-first-post.md | 0 homepage/content/warum.md | 12 + homepage/content/warum/_index.md | 12 + homepage/hugo.toml | 52 +- homepage/hugo.toml.old | 10 + homepage/hugo_stats.json | 138 + homepage/layouts/404.html | 24 + .../_default/_markup/render-heading.html | 7 + .../_default/_markup/render-image.html | 20 + homepage/layouts/_default/archive.html | 30 + homepage/layouts/_default/baseof.html | 15 + homepage/layouts/_default/list.html | 14 + homepage/layouts/_default/single.html | 51 + homepage/layouts/_partials/comments.html | 2 + homepage/layouts/_partials/date.html | 1 + homepage/layouts/_partials/footer.html | 4 + homepage/layouts/_partials/head.html | 59 + homepage/layouts/_partials/head/css.html | 19 + homepage/layouts/_partials/head/favicon.html | 17 + homepage/layouts/_partials/header.html | 19 + homepage/layouts/_partials/menu.html | 51 + homepage/layouts/_partials/terms.html | 22 + homepage/layouts/index.html | 6 + homepage/layouts/robots.txt | 4 + homepage/layouts/shortcodes/mermaid.html | 2 + homepage/public/404.html | 160 +- homepage/public/categories/index.html | 173 +- homepage/public/categories/index.xml | 10 +- homepage/public/css/custom.css | 44 + homepage/public/css/main.css | 734 ++++ homepage/public/favicon.ico | Bin 0 -> 15406 bytes .../favicon_io/android-icon-144x144.png | Bin 0 -> 6918 bytes .../favicon_io/android-icon-192x192.png | Bin 0 -> 10516 bytes .../public/favicon_io/android-icon-36x36.png | Bin 0 -> 1321 bytes .../public/favicon_io/android-icon-48x48.png | Bin 0 -> 1697 bytes .../public/favicon_io/android-icon-72x72.png | Bin 0 -> 2657 bytes .../public/favicon_io/android-icon-96x96.png | Bin 0 -> 3829 bytes .../public/favicon_io/apple-icon-114x114.png | Bin 0 -> 4886 bytes .../public/favicon_io/apple-icon-120x120.png | Bin 0 -> 5265 bytes .../public/favicon_io/apple-icon-144x144.png | Bin 0 -> 6918 bytes .../public/favicon_io/apple-icon-152x152.png | Bin 0 -> 7594 bytes .../public/favicon_io/apple-icon-180x180.png | Bin 0 -> 9830 bytes .../public/favicon_io/apple-icon-57x57.png | Bin 0 -> 2025 bytes .../public/favicon_io/apple-icon-60x60.png | Bin 0 -> 2093 bytes .../public/favicon_io/apple-icon-72x72.png | Bin 0 -> 2657 bytes .../public/favicon_io/apple-icon-76x76.png | Bin 0 -> 2841 bytes .../favicon_io/apple-icon-precomposed.png | Bin 0 -> 11039 bytes homepage/public/favicon_io/apple-icon.png | Bin 0 -> 11039 bytes homepage/public/favicon_io/browserconfig.xml | 2 + homepage/public/favicon_io/favicon-16x16.png | Bin 0 -> 816 bytes homepage/public/favicon_io/favicon-32x32.png | Bin 0 -> 1220 bytes homepage/public/favicon_io/favicon-96x96.png | Bin 0 -> 3829 bytes homepage/public/favicon_io/favicon.ico | Bin 0 -> 1150 bytes homepage/public/favicon_io/manifest.json | 41 + .../public/favicon_io/ms-icon-144x144.png | Bin 0 -> 6918 bytes .../public/favicon_io/ms-icon-150x150.png | Bin 0 -> 7408 bytes .../public/favicon_io/ms-icon-310x310.png | Bin 0 -> 22613 bytes homepage/public/favicon_io/ms-icon-70x70.png | Bin 0 -> 2592 bytes .../gedanken/creating-a-new-theme/index.html | 1228 +++++++ homepage/public/gedanken/diagrams/index.html | 3132 +++++++++++++++++ .../gedanken/hugoisforlovers/index.html | 221 ++ homepage/public/gedanken/index.html | 129 + homepage/public/gedanken/index.xml | 56 + .../public/gedanken/introduce-hugo/index.html | 1229 +++++++ .../gedanken/migrate-from-jekyll/index.html | 343 ++ .../public/gedanken/my-first-post/index.html | 162 + homepage/public/index.html | 184 +- homepage/public/index.xml | 53 +- .../posts/creating-a-new-theme/index.html | 1200 +++++++ homepage/public/posts/diagrams/index.html | 3132 +++++++++++++++++ .../public/posts/hugoisforlovers/index.html | 221 ++ homepage/public/posts/index.html | 205 +- homepage/public/posts/index.xml | 51 +- .../public/posts/introduce-hugo/index.html | 1201 +++++++ .../posts/migrate-from-jekyll/index.html | 343 ++ .../public/posts/my-first-post/index.html | 242 +- homepage/public/sitemap.xml | 40 +- homepage/public/tags/diagrams/index.html | 108 + homepage/public/tags/diagrams/index.xml | 21 + homepage/public/tags/hugo/index.html | 132 + homepage/public/tags/hugo/index.xml | 49 + homepage/public/tags/index.html | 191 +- homepage/public/tags/index.xml | 32 +- homepage/public/tags/tech/index.html | 114 + homepage/public/tags/tech/index.xml | 28 + homepage/public/warum/index.html | 110 + homepage/public/warum/index.xml | 13 + homepage/themes/shibui | 1 + 96 files changed, 18132 insertions(+), 590 deletions(-) create mode 100644 homepage/content/_index.md create mode 100644 homepage/content/gedanken/_index.md create mode 100644 homepage/content/gedanken/creating-a-new-theme.md create mode 100644 homepage/content/gedanken/diagrams.md create mode 100644 homepage/content/gedanken/hugoisforlovers.md create mode 100644 homepage/content/gedanken/introduce-hugo.md create mode 100644 homepage/content/gedanken/migrate-from-jekyll.md rename homepage/content/{posts => gedanken}/my-first-post.md (100%) create mode 100644 homepage/content/warum.md create mode 100644 homepage/content/warum/_index.md create mode 100644 homepage/hugo.toml.old create mode 100644 homepage/hugo_stats.json create mode 100644 homepage/layouts/404.html create mode 100644 homepage/layouts/_default/_markup/render-heading.html create mode 100644 homepage/layouts/_default/_markup/render-image.html create mode 100644 homepage/layouts/_default/archive.html create mode 100644 homepage/layouts/_default/baseof.html create mode 100644 homepage/layouts/_default/list.html create mode 100644 homepage/layouts/_default/single.html create mode 100644 homepage/layouts/_partials/comments.html create mode 100644 homepage/layouts/_partials/date.html create mode 100644 homepage/layouts/_partials/footer.html create mode 100644 homepage/layouts/_partials/head.html create mode 100644 homepage/layouts/_partials/head/css.html create mode 100644 homepage/layouts/_partials/head/favicon.html create mode 100644 homepage/layouts/_partials/header.html create mode 100644 homepage/layouts/_partials/menu.html create mode 100644 homepage/layouts/_partials/terms.html create mode 100644 homepage/layouts/index.html create mode 100644 homepage/layouts/robots.txt create mode 100644 homepage/layouts/shortcodes/mermaid.html create mode 100644 homepage/public/css/custom.css create mode 100644 homepage/public/css/main.css create mode 100644 homepage/public/favicon.ico create mode 100644 homepage/public/favicon_io/android-icon-144x144.png create mode 100644 homepage/public/favicon_io/android-icon-192x192.png create mode 100644 homepage/public/favicon_io/android-icon-36x36.png create mode 100644 homepage/public/favicon_io/android-icon-48x48.png create mode 100644 homepage/public/favicon_io/android-icon-72x72.png create mode 100644 homepage/public/favicon_io/android-icon-96x96.png create mode 100644 homepage/public/favicon_io/apple-icon-114x114.png create mode 100644 homepage/public/favicon_io/apple-icon-120x120.png create mode 100644 homepage/public/favicon_io/apple-icon-144x144.png create mode 100644 homepage/public/favicon_io/apple-icon-152x152.png create mode 100644 homepage/public/favicon_io/apple-icon-180x180.png create mode 100644 homepage/public/favicon_io/apple-icon-57x57.png create mode 100644 homepage/public/favicon_io/apple-icon-60x60.png create mode 100644 homepage/public/favicon_io/apple-icon-72x72.png create mode 100644 homepage/public/favicon_io/apple-icon-76x76.png create mode 100644 homepage/public/favicon_io/apple-icon-precomposed.png create mode 100644 homepage/public/favicon_io/apple-icon.png create mode 100644 homepage/public/favicon_io/browserconfig.xml create mode 100644 homepage/public/favicon_io/favicon-16x16.png create mode 100644 homepage/public/favicon_io/favicon-32x32.png create mode 100644 homepage/public/favicon_io/favicon-96x96.png create mode 100644 homepage/public/favicon_io/favicon.ico create mode 100644 homepage/public/favicon_io/manifest.json create mode 100644 homepage/public/favicon_io/ms-icon-144x144.png create mode 100644 homepage/public/favicon_io/ms-icon-150x150.png create mode 100644 homepage/public/favicon_io/ms-icon-310x310.png create mode 100644 homepage/public/favicon_io/ms-icon-70x70.png create mode 100644 homepage/public/gedanken/creating-a-new-theme/index.html create mode 100644 homepage/public/gedanken/diagrams/index.html create mode 100644 homepage/public/gedanken/hugoisforlovers/index.html create mode 100644 homepage/public/gedanken/index.html create mode 100644 homepage/public/gedanken/index.xml create mode 100644 homepage/public/gedanken/introduce-hugo/index.html create mode 100644 homepage/public/gedanken/migrate-from-jekyll/index.html create mode 100644 homepage/public/gedanken/my-first-post/index.html create mode 100644 homepage/public/posts/creating-a-new-theme/index.html create mode 100644 homepage/public/posts/diagrams/index.html create mode 100644 homepage/public/posts/hugoisforlovers/index.html create mode 100644 homepage/public/posts/introduce-hugo/index.html create mode 100644 homepage/public/posts/migrate-from-jekyll/index.html create mode 100644 homepage/public/tags/diagrams/index.html create mode 100644 homepage/public/tags/diagrams/index.xml create mode 100644 homepage/public/tags/hugo/index.html create mode 100644 homepage/public/tags/hugo/index.xml create mode 100644 homepage/public/tags/tech/index.html create mode 100644 homepage/public/tags/tech/index.xml create mode 100644 homepage/public/warum/index.html create mode 100644 homepage/public/warum/index.xml create mode 160000 homepage/themes/shibui diff --git a/.gitmodules b/.gitmodules index 9b03950..6d33448 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "homepage/themes/ananke"] path = homepage/themes/ananke url = https://github.com/gohugo-ananke/ananke +[submodule "homepage/themes/shibui"] + path = homepage/themes/shibui + url = https://github.com/ntk148v/shibui.git diff --git a/homepage/content/_index.md b/homepage/content/_index.md new file mode 100644 index 0000000..416d351 --- /dev/null +++ b/homepage/content/_index.md @@ -0,0 +1,20 @@ +--- +title: "Thomas und die Liebe letzter Teil neue Version..." +--- + +## Introduction + +Ich glaube, ich schreibe es hauptsächlich deswegen, um zu lernen und das Gelernte zu vertiefen und vielleicht auch ein wenig, damit es Euch da draußen helfen kann. + +Bis vor ein paar Jahren kannte ich wirklich noch nicht viel. Ich konnte nicht wirklich über Gefühle sprechen, geschweige denn diese auch ausleben und verstehen. Heute kenne ich große Teile der Gründe und hoffe auch, damit besser umgehen zu können. + +Ich kannte mich eigentlich selber nicht so richtig, war aber sehr zufrieden mit mir. Ich war auch der einzige. In der Corona-Zeit hatte ich mich immer mehr von meiner Familie abgesondert und mich im wörtlichen Sinne in den Keller zurück gezogen. + +Erst als meine Frau mich betrogen hatte musste ich etwas ändern. Ich hatte zu der Zeit noch ein sehr altes Beziehungsbild, bzw. Lebensmodell, so, dass ich deswegen echt angepisst war. Ich konnte keine Grenzen setzen, ich konnte nicht über Gefühle reden und ich konnte mich auch nicht selbst reflektieren. Ich wusste nur, so war es scheiße. Also machte ich mich auf, mich selber wieder in die Spur zu bringen. Dazu brauchte ich *nur* folgendes: + +- Ich musste abnehmen. Aus drei Gründen. Zum Einen war es nicht mehr gesund, soviel, wie ich gewogen habe und zum Anderen habe ich mich selber auch nicht mehr als attraktiv wahrgenommen. Hinzu kommt noch ein dritter Grund: Meine Ausdauer in allen Belangen war unterirdisch. Deswegen hab ich beschlossen, abzunehmen. Ich hab erst mal komplett auf Süßes und auf Chips und auf alles verzichtet, was ich nur aus Langeweile gegessen habe. Dann hab ich immer mehr auf mein Hungergefühl geachtet und so hab ich es in einem halben Jahr von 95kg auf 65kg geschafft und halte dieses Gewicht nun schon ca. 2 Jahre. Das gibt mir wieder mehr Selbstvertrauen, Selbstwertgefühl und generell fühle ich mich viel fitter und wohler, als zuvor. +- Ich musste lernen, die Welt wieder positiv zu sehen. Ich musste viel über meine Gefühle lernen und wie ich sie wieder ins Positive bringe. Ich musste lernen, das ich verantwortlich für meine Gefühle und Emotionen bin. Ich kann die Schuld nicht im Außen suchen. Ich bin auch nicht verantwortlich für die Gefühle anderer. Hier habe ich viel gelernt über Liebe, Grenzen, Lebensmodelle, innere Kinder, Bindungsprobleme, Kommunikation, etc. . Das sowohl theoretisch über Webseminare, Vorlesungen, Bücher, als auch in der Praxis durch den tatsächlichen Versuch, es zu leben. +- Mit meinem wiederhergestellten, Selbstvertrauen, meiner wachsenden Praxis im Umgang mit meinen Gefühlen und in der Kommunikation habe ich viele total tolle Menschen kennen gelernt und mit ihnen komplett neue Lebensmodelle, Vorstellungen und Erkenntnisse über mich und die Welt. Ich habe gelernt, wie toll es ist, vorurteilsfrei und offen die Welt und die Menschen kennen lernen zu dürfen. + +All diese Punkte führten dazu, dass ich mich wieder richtig gut und vollständig und im Leben befindlich fühle und wieder mit einer sehr offenen, achtsamen und positiven Stimmung durchs Leben gehen kann, und ich wieder Freude an allem habe, was ich so mache. + diff --git a/homepage/content/gedanken/_index.md b/homepage/content/gedanken/_index.md new file mode 100644 index 0000000..556d04b --- /dev/null +++ b/homepage/content/gedanken/_index.md @@ -0,0 +1,5 @@ +--- +title: "Gedanken" +name: Thomas +author: Thomas +--- diff --git a/homepage/content/gedanken/creating-a-new-theme.md b/homepage/content/gedanken/creating-a-new-theme.md new file mode 100644 index 0000000..3552d92 --- /dev/null +++ b/homepage/content/gedanken/creating-a-new-theme.md @@ -0,0 +1,1145 @@ +--- +title: "Creating a New Theme" +date: 2021-10-22T17:12:11+07:00 +comment: true +author: Thomas +tags: ["hugo"] +--- + + +## 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. Hugo created a css/ directory. +3. Hugo created a js/ directory. +4. 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. + +#### 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. Run the built in web server in watch mode. +3. Open your site in a browser. +4. Update the theme. +5. Glance at your browser window to see changes. +6. Return to step 4. + +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. _default/list.html +3. _default/single.html + +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 + + + +

hugo says hello!

+ + +: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 + + + +

hugo says hello!

+ +``` + +#### 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 + + + +

hugo says hello!

+ + +``` + +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 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 + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +: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. .Title +3. end + +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 + + + + +

second

+ +

first

+ + + +$ +``` + +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 + + + + {{ .Title }} + + +

{{ .Title }}

+ {{ .Content }} + + +: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 + + + + first + + +

first

+

my first post

+ + + + +$ cat public/post/second/index.html + + + + second + + +

second

+

my second post

+ + + +$ +``` + +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 + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +``` + +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 + + + + +

second

+ +

first

+ + + + +$ +``` + +### 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 + + + +

creating a new theme

+

about

+

second

+

first

+ + +``` + +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 + + + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if eq .Type "page" }} +

{{ .Title }}

+ {{ end }} + {{ end }} + + +: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. + +### Create the Header and Footer Partials + +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 + + + + {{ .Title }} + + +:wq + +$ vi themes/zafta/layouts/partials/footer.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" . }} + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if or (eq .Type "page") (eq .Type "about") }} +

{{ .Type }} - {{ .Title }} - {{ .RelPermalink }}

+ {{ 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" . }} + +

{{ .Title }}

+ {{ .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" . }} + +

{{ .Title }}

+

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

+ {{ .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" . }} + +

{{ .Title }}

+ {{ .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" . }} + +

{{ .Title }}

+

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

+ {{ .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. diff --git a/homepage/content/gedanken/diagrams.md b/homepage/content/gedanken/diagrams.md new file mode 100644 index 0000000..aa22735 --- /dev/null +++ b/homepage/content/gedanken/diagrams.md @@ -0,0 +1,221 @@ +--- +title: "Hugo Diagrams" +date: 2022-10-25T17:12:11+07:00 +comment: true +tags: ["hugo", "tech", "diagrams"] +--- + +Hugo version >= 0.93.0 + +## GoAT Diagrams (Ascii) + +Hugo! supports [GoAT](https://github.com/bep/goat) natively. This means that this code block: + +```` +```goat + . . . .--- 1 .-- 1 / 1 + / \ | | .---+ .-+ + + / \ .---+---. .--+--. | '--- 2 | '-- 2 / \ 2 + + + | | | | ---+ ---+ + + / \ / \ .-+-. .-+-. .+. .+. | .--- 3 | .-- 3 \ / 3 + / \ / \ | | | | | | | | '---+ '-+ + + 1 2 3 4 1 2 3 4 1 2 3 4 '--- 4 '-- 4 \ 4 + +``` +```` + +Will be rendered as: + +```goat + + . . . .--- 1 .-- 1 / 1 + / \ | | .---+ .-+ + + / \ .---+---. .--+--. | '--- 2 | '-- 2 / \ 2 + + + | | | | ---+ ---+ + + / \ / \ .-+-. .-+-. .+. .+. | .--- 3 | .-- 3 \ / 3 + / \ / \ | | | | | | | | '---+ '-+ + + 1 2 3 4 1 2 3 4 1 2 3 4 '--- 4 '-- 4 \ 4 +``` + +## GoAT Diagrams Examples + +### Graphics + +```goat + . + 0 3 P * Eye / ^ / + *-------* +y \ +) \ / Reflection + 1 /| 2 /| ^ \ \ \ v + *-------* | | v0 \ v3 --------*-------- + | |4 | |7 | *----\-----* + | *-----|-* +-----> +x / v X \ .-.<-------- o + |/ |/ / / o \ | / | Refraction / \ + *-------* v / \ +-' / \ + 5 6 +z v1 *------------------* v2 | o-----o + v + +``` + +### Complex + +```goat ++-------------------+ ^ .---. +| A Box |__.--.__ __.--> | .-. | | +| | '--' v | * |<--- | | ++-------------------+ '-' | | + Round *---(-. | + .-----------------. .-------. .----------. .-------. | | | + | Mixed Rounded | | | / Diagonals \ | | | | | | + | & Square Corners | '--. .--' / \ |---+---| '-)-' .--------. + '--+------------+-' .--. | '-------+--------' | | | | / Search / + | | | | '---. | '-------' | '-+------' + |<---------->| | | | v Interior | ^ + ' <---' '----' .-----------. ---. .--- v | + .------------------. Diag line | .-------. +---. \ / . | + | if (a > b) +---. .--->| | | | | Curved line \ / / \ | + | obj->fcn() | \ / | '-------' |<--' + / \ | + '------------------' '--' '--+--------' .--. .--. | .-. +Done?+-' + .---+-----. | ^ |\ | | /| .--+ | | \ / + | | | Join \|/ | | Curved | \| |/ | | \ | \ / + | | +----> o --o-- '-' Vertical '--' '--' '-- '--' + .---. + <--+---+-----' | /|\ | | 3 | + v not:line 'quotes' .-' '---' + .-. .---+--------. / A || B *bold* | ^ + | | | Not a dot | <---+---<-- A dash--is not a line v | + '-' '---------+--' / Nor/is this. --- + +``` + +### Process + +```goat + . + .---------. / \ + | START | / \ .-+-------+-. ___________ + '----+----' .-------. A / \ B | |COMPLEX| | / \ .-. + | | END |<-----+CHOICE +----->| | | +--->+ PREPARATION +--->| X | + v '-------' \ / | |PROCESS| | \___________/ '-' + .---------. \ / '-+---+---+-' + / INPUT / \ / + '-----+---' ' + | ^ + v | + .-----------. .-----+-----. .-. + | PROCESS +---------------->| PROCESS |<------+ X | + '-----------' '-----------' '-' +``` + +### File tree + +Created from + +```goat { width=300 color="orange" } +───Linux─┬─Android + ├─Debian─┬─Ubuntu─┬─Lubuntu + │ │ ├─Kubuntu + │ │ ├─Xubuntu + │ │ └─Xubuntu + │ └─Mint + ├─Centos + └─Fedora +``` + + +### Sequence Diagram + + + +```goat { class="w-40" } +┌─────┐ ┌───┐ +│Alice│ │Bob│ +└──┬──┘ └─┬─┘ + │ │ + │ Hello Bob! │ + │───────────>│ + │ │ + │Hello Alice!│ + │<───────────│ +┌──┴──┐ ┌─┴─┐ +│Alice│ │Bob│ +└─────┘ └───┘ + +``` + + +### Flowchart + + + +```goat + _________________ + ╱ ╲ ┌─────┐ + ╱ DO YOU UNDERSTAND ╲____________________________________________________│GOOD!│ + ╲ FLOW CHARTS? ╱yes └──┬──┘ + ╲_________________╱ │ + │no │ + _________▽_________ ______________________ │ + ╱ ╲ ╱ ╲ ┌────┐ │ +╱ OKAY, YOU SEE THE ╲________________╱ ... AND YOU CAN SEE ╲___│GOOD│ │ +╲ LINE LABELED 'YES'? ╱yes ╲ THE ONES LABELED 'NO'? ╱yes└──┬─┘ │ + ╲___________________╱ ╲______________________╱ │ │ + │no │no │ │ + ________▽_________ _________▽__________ │ │ + ╱ ╲ ┌───────────┐ ╱ ╲ │ │ + ╱ BUT YOU SEE THE ╲___│WAIT, WHAT?│ ╱ BUT YOU JUST ╲___ │ │ + ╲ ONES LABELED 'NO'? ╱yes└───────────┘ ╲ FOLLOWED THEM TWICE? ╱yes│ │ │ + ╲__________________╱ ╲____________________╱ │ │ │ + │no │no │ │ │ + ┌───▽───┐ │ │ │ │ + │LISTEN.│ └───────┬───────┘ │ │ + └───┬───┘ ┌──────▽─────┐ │ │ + ┌─────▽────┐ │(THAT WASN'T│ │ │ + │I HATE YOU│ │A QUESTION) │ │ │ + └──────────┘ └──────┬─────┘ │ │ + ┌────▽───┐ │ │ + │SCREW IT│ │ │ + └────┬───┘ │ │ + └─────┬─────┘ │ + │ │ + └─────┬─────┘ + ┌───────▽──────┐ + │LET'S GO DRING│ + └───────┬──────┘ + ┌─────────▽─────────┐ + │HEY, I SHOULD TRY │ + │INSTALLING FREEBSD!│ + └───────────────────┘ + +``` + + +### Table + + + +```goat { class="w-80 dark-blue" } +┌────────────────────────────────────────────────┐ +│ │ +├────────────────────────────────────────────────┤ +│SYNTAX : { PRODUCTION } . │ +├────────────────────────────────────────────────┤ +│PRODUCTION: IDENTIFIER "=" EXPRESSION "." . │ +├────────────────────────────────────────────────┤ +│EXPRESSION: TERM { "|" TERM } . │ +├────────────────────────────────────────────────┤ +│TERM : FACTOR { FACTOR } . │ +├────────────────────────────────────────────────┤ +│FACTOR : IDENTIFIER │ +├────────────────────────────────────────────────┤ +│ | LITERAL │ +├────────────────────────────────────────────────┤ +│ | "[" EXPRESSION "]" │ +├────────────────────────────────────────────────┤ +│ | "(" EXPRESSION ")" │ +├────────────────────────────────────────────────┤ +│ | "{" EXPRESSION "}" . │ +├────────────────────────────────────────────────┤ +│IDENTIFIER: letter { letter } . │ +├────────────────────────────────────────────────┤ +│LITERAL : """" character { character } """" .│ +└────────────────────────────────────────────────┘ +``` diff --git a/homepage/content/gedanken/hugoisforlovers.md b/homepage/content/gedanken/hugoisforlovers.md new file mode 100644 index 0000000..8680a20 --- /dev/null +++ b/homepage/content/gedanken/hugoisforlovers.md @@ -0,0 +1,82 @@ +--- +title: "Getting Started with Hugo" +date: 2022-10-26T17:12:11+07:00 +comment: true +tags: ["hugo"] +--- + +## Step 1. Install Hugo + +Go to [Hugo releases](https://github.com/spf13/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](https://gohugo.io/getting-started/installing/) + +## 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](http://github.com/spf13/hugo) +2. Go into the repo +3. Run hugo in server mode and build the docs +4. Open your browser to http://localhost:1313 +``` + +Corresponding pseudo commands: + +```shell +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. + +```shell +/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](http://vim.spf13.com) 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. + +```shell +> 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. diff --git a/homepage/content/gedanken/introduce-hugo.md b/homepage/content/gedanken/introduce-hugo.md new file mode 100644 index 0000000..305e4d9 --- /dev/null +++ b/homepage/content/gedanken/introduce-hugo.md @@ -0,0 +1,1141 @@ +--- +title: "Introduce Hugo" +date: 2022-10-20T17:12:11+07:00 +comment: true +tags: ["hugo", "tech"] +--- + +## Introduction + +This tutorial will show you how to create a simple theme in [Hugo](https://github.com/gohugoio/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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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: + +```shell +$ 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: + +```shell +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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ 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. Hugo created a css/ directory. +3. Hugo created a js/ directory. +4. 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. + +#### 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. + +```shell +$ 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. + +```shell +$ 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. Run the built in web server in watch mode. +3. Open your site in a browser. +4. Update the theme. +5. Glance at your browser window to see changes. +6. Return to step 4. + +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. + + +```shell +$ 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. _default/list.html +3. _default/single.html + +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. + +```shell +$ vi themes/zafta/layouts/index.html + + + +

hugo says hello!

+ + +:wq + +$ +``` + +Build the web site and then verify the results. + +```shell +$ 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 + + + +

hugo says hello!

+ +``` + +#### Live Reload + +Note: If you're running the server with the `--watch` option, you'll see different content in the file: + +```shell +$ cat public/index.html + + + +

hugo says hello!

+ + +``` + +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. + +```shell +$ 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 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. + +```shell +$ 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. + +```shell +$ 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: + +```shell +$ 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. + +```shell +$ vi themes/zafta/layouts/index.html + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +: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. .Title +3. end + +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. + +```shell +$ 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 + + + + +

second

+ +

first

+ + + +$ +``` + +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: + +```shell +$ 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 + +```shell +$ vi themes/zafta/layouts/_default/single.html + + + + {{ .Title }} + + +

{{ .Title }}

+ {{ .Content }} + + +:wq + +$ +``` + +Build the web site and verify the results. + +```shell +$ 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 + + + + first + + +

first

+

my first post

+ + + + +$ cat public/post/second/index.html + + + + second + + +

second

+

my second post

+ + + +$ +``` + +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. + +```shell +$ vi themes/zafta/layouts/index.html + + + + {{ range first 10 .Data.Pages }} +

{{ .Title }}

+ {{ end }} + + +``` + +Build the web site and verify the results. + +```shell +$ 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 + + + + +

second

+ +

first

+ + + + +$ +``` + +### 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. + +```shell +$ 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: + +```shell +$ 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. + +```shell +$ 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. + +```shell +$ cat public/index.html + + + +

creating a new theme

+

about

+

second

+

first

+ + +``` + +Notice that the "about" link is listed with the posts? That's not desirable, so let's change that first. + +```shell +$ vi themes/zafta/layouts/index.html + + + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if eq .Type "page" }} +

{{ .Title }}

+ {{ end }} + {{ end }} + + +: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. + +```shell +$ 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. + +```shell +$ 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. + +### Create the Header and Footer Partials + +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. + +```shell +$ vi themes/zafta/layouts/partials/header.html + + + + {{ .Title }} + + +:wq + +$ vi themes/zafta/layouts/partials/footer.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. + +```shell +$ vi themes/zafta/layouts/index.html +{{ partial "header.html" . }} + +

posts

+ {{ range first 10 .Data.Pages }} + {{ if eq .Type "post"}} +

{{ .Title }}

+ {{ end }} + {{ end }} + +

pages

+ {{ range .Data.Pages }} + {{ if or (eq .Type "page") (eq .Type "about") }} +

{{ .Type }} - {{ .Title }} - {{ .RelPermalink }}

+ {{ 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 + +```shell +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+ {{ .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. + +```shell +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+

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

+ {{ .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. + +```shell +$ mkdir themes/zafta/layouts/post +$ vi themes/zafta/layouts/_default/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+ {{ .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. + +```shell +$ vi themes/zafta/layouts/post/single.html +{{ partial "header.html" . }} + +

{{ .Title }}

+

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

+ {{ .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. diff --git a/homepage/content/gedanken/migrate-from-jekyll.md b/homepage/content/gedanken/migrate-from-jekyll.md new file mode 100644 index 0000000..227d6f3 --- /dev/null +++ b/homepage/content/gedanken/migrate-from-jekyll.md @@ -0,0 +1,179 @@ +--- +title: "Migrate to Hugo from Jekyll" +date: 2021-10-22T17:12:11+07:00 +comment: true +tags: ["hugo"] +--- + +## 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 + +```shell +▾ / + ▾ images/ + logo.png +``` + +should become + +```shell +▾ / + ▾ 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](/overview/configuration/) 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](http://blog.blindgaenger.net/generate_github_pages_in_a_submodule.html), 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). + +```shell +git submodule deinit _site +git rm _site +git submodule add -b gh-pages git@github.com:your-username/your-repo.git public +``` + +2. Or, change the Hugo configuration to use `_site` instead of `public`. + +``` +{ + .. + "publishdir": "_site", + .. +} +``` + +## 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](http://jekyllrb.com/docs/templates/) if you need to refresh your memory on how you built your blog and [Hugo's template](/layout/templates/) to learn Hugo's way. + +As a single reference data point, converting my templates for [heyitsalex.net](http://heyitsalex.net/) took me no more than a few hours. + +## Convert Jekyll plugins to Hugo shortcodes + +Jekyll has [plugins](http://jekyllrb.com/docs/plugins/); Hugo has [shortcodes](/doc/shortcodes/). It's fairly trivial to do a port. + +### Implementation + +As an example, I was using a custom [`image_tag`](https://github.com/alexandre-normand/alexandre-normand/blob/74bb12036a71334fdb7dba84e073382fc06908ec/_plugins/image_tag.rb) 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: + +```ruby +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: "
" + else + source: "
" + end + if @link + source += "" + end + source += "" + if @link + source += "" + end + source += "
#{@caption}
" if @caption + source += "
" + source + end + end +end +Liquid::Template.register_tag('image', Jekyll::ImageTag) +``` + +is written as this Hugo shortcode: + +```html + +
+ {{ with .Get "link"}}{{ end }} + + {{ if .Get "link"}}{{ end }} + {{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}} +
{{ if isset .Params "title" }} + {{ .Get "title" }}{{ end }} + {{ if or (.Get "caption") (.Get "attr")}}

+ {{ .Get "caption" }} + {{ with .Get "attrlink"}} {{ end }} + {{ .Get "attr" }} + {{ if .Get "attrlink"}} {{ end }} +

{{ end }} +
+ {{ end }} +
+ +``` + +### 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](http://heyitsalex.net/) 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](https://github.com/alexandre-normand/alexandre-normand/compare/869d69435bd2665c3fbf5b5c78d4c22759d7613a...b7f6605b1265e83b4b81495423294208cc74d610). diff --git a/homepage/content/posts/my-first-post.md b/homepage/content/gedanken/my-first-post.md similarity index 100% rename from homepage/content/posts/my-first-post.md rename to homepage/content/gedanken/my-first-post.md diff --git a/homepage/content/warum.md b/homepage/content/warum.md new file mode 100644 index 0000000..d3d1b8b --- /dev/null +++ b/homepage/content/warum.md @@ -0,0 +1,12 @@ +--- +title: "Warum" +--- + +## Über mich und Warum + +### über mich +Ich bin Thomas + +### warum +und ich schreibe hier auf dieser Page einfach meine Gedanken, wie sie mir kommen zu den Themen Liebe, Beziehungen und was da so alles an Zeug dazu gehört. Ich schreibe das im Wesentlichen für mich, um meine Gedanken ein wenig zu ordnen und zu strukturieren. Wenn Euch was gefällt, nehmt es für Euch. Kommentiert gerne die Gedanken, fügt Eure hinzu ... + diff --git a/homepage/content/warum/_index.md b/homepage/content/warum/_index.md new file mode 100644 index 0000000..d3d1b8b --- /dev/null +++ b/homepage/content/warum/_index.md @@ -0,0 +1,12 @@ +--- +title: "Warum" +--- + +## Über mich und Warum + +### über mich +Ich bin Thomas + +### warum +und ich schreibe hier auf dieser Page einfach meine Gedanken, wie sie mir kommen zu den Themen Liebe, Beziehungen und was da so alles an Zeug dazu gehört. Ich schreibe das im Wesentlichen für mich, um meine Gedanken ein wenig zu ordnen und zu strukturieren. Wenn Euch was gefällt, nehmt es für Euch. Kommentiert gerne die Gedanken, fügt Eure hinzu ... + diff --git a/homepage/hugo.toml b/homepage/hugo.toml index 10bfad7..85fa777 100644 --- a/homepage/hugo.toml +++ b/homepage/hugo.toml @@ -1,4 +1,50 @@ -baseURL = 'https://example.org/' +baseURL = 'http://example.org/' locale = 'en-us' -title = 'My New Hugo Project' -theme = 'ananke' +title = 'Thomas Internet Garden' +theme = "shibui" + +[params.author] +name = "Thomas" +email = "Thomas.Sindt@gmx.de" + +[markup] + defaultMarkdownHandler = "goldmark" + # By default, Goldmark trims unsafe outputs which might prevent some shortcodes from rendering. + # It is recommended to set markup.goldmark.renderer.unsafe=true if you encounter problems. + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true # Enable user to embed HTML snippets in Markdown content. + [markup.highlight] + codeFences = true + guessSyntax = true + lineNos = false + noClasses = true + tabWidth = 4 + style = "algol_nu" + [markup.tableOfContents] + startLevel = 2 + endLevel = 4 + ordered = true + +[menu] + [[menu.main]] + name = "Gedanken" + url = "/gedanken/" + weight = 1 + [[menu.main]] + name = "Warum" + url = "/warum/" + weight = 2 + +[build] + writeStats = true + +[frontmatter] + date = ['date', 'publishDate', 'lastmod'] + expiryDate = ['expiryDate'] + lastmod = [':git', 'lastmod', 'date', 'publishDate'] + publishDate = ['publishDate', 'date'] + +[caches] + [caches.images] + dir = ':cacheDir/images' diff --git a/homepage/hugo.toml.old b/homepage/hugo.toml.old new file mode 100644 index 0000000..b5a1c61 --- /dev/null +++ b/homepage/hugo.toml.old @@ -0,0 +1,10 @@ +baseURL = 'https://example.org/' +locale = 'en-us' +title = 'Thomas Internet Garden' +theme = 'shibui' + +[params] + author = "Thomas Sindt" + email = "Thomas.Sindt@gmx.de" + + \ No newline at end of file diff --git a/homepage/hugo_stats.json b/homepage/hugo_stats.json new file mode 100644 index 0000000..774891d --- /dev/null +++ b/homepage/hugo_stats.json @@ -0,0 +1,138 @@ +{ + "htmlElements": { + "tags": [ + "a", + "body", + "circle", + "code", + "details", + "div", + "em", + "footer", + "g", + "h1", + "h2", + "h3", + "h4", + "head", + "header", + "html", + "li", + "link", + "main", + "meta", + "nav", + "ol", + "p", + "path", + "polygon", + "pre", + "script", + "span", + "strong", + "summary", + "svg", + "text", + "time", + "title", + "ul" + ], + "classes": [ + "back-link", + "back-nav", + "comments", + "current", + "dark-blue", + "goat", + "highlight", + "path-nav", + "reading-time", + "skip-link", + "svg-container", + "terminal-nav", + "terms-list", + "time", + "time-list", + "toc", + "toc-content", + "toc-title", + "w-40", + "w-80" + ], + "ids": [ + "TableOfContents", + "a-practical-example-in-a-diff", + "add-content-to-the-homepage", + "add-content-to-the-posts", + "add-date-published-to-posts", + "add-date-published-to-the-template", + "build-a-dynamic-home-page", + "clean-up", + "complex", + "content", + "convert-jekyll-plugins-to-hugo-shortcodes", + "convert-jekyll-templates-to-hugo-templates", + "create-a-new-site", + "create-a-new-theme", + "create-a-post-listing", + "create-a-skeleton", + "create-new-posts", + "create-the-header-and-footer-partials", + "create-your-hugo-configuration-file", + "creating-top-level-pages", + "development-commands", + "dont-repeat-yourself", + "file-tree", + "finishing-touches", + "fix-content", + "flowchart", + "front-matter", + "generate-the-html-for-the-new-site", + "generate-the-site", + "goat-diagrams-ascii", + "goat-diagrams-examples", + "graphics", + "hugos-watch-option", + "implementation", + "introduction", + "linking-to-content", + "list-and-single-templates", + "list-template", + "live-reload", + "live-reload-1", + "main-content", + "make-a-static-home-page", + "markdown", + "move-static-content-to-static", + "partial-template", + "process", + "purge-the-public-directory", + "sequence-diagram", + "set-your-configuration-publish-folder-to-_site", + "sharing-templates", + "single-template", + "site-configuration-file", + "skins", + "some-definitions", + "step-1-install-hugo", + "step-2-build-the-docs", + "step-3-change-the-docs-site", + "table", + "template-files", + "test-the-new-site", + "the-home-page", + "the-home-page-1", + "the-magic-of-static", + "the-theme-development-cycle", + "update-the-configuration-file-to-use-the-theme", + "update-the-default-single-template-to-use-the-partials", + "update-the-home-page-template", + "update-the-home-page-template-to-use-the-partials", + "update-the-template-file", + "usage", + "warum", + "über-mich", + "über-mich-und-warum" + ] + } +} diff --git a/homepage/layouts/404.html b/homepage/layouts/404.html new file mode 100644 index 0000000..c265a00 --- /dev/null +++ b/homepage/layouts/404.html @@ -0,0 +1,24 @@ +{{ define "main" }} +

404 - Page Not Found

+

The page you're looking for doesn't exist or has been moved.

+ + +{{ end }} diff --git a/homepage/layouts/_default/_markup/render-heading.html b/homepage/layouts/_default/_markup/render-heading.html new file mode 100644 index 0000000..fc39c9c --- /dev/null +++ b/homepage/layouts/_default/_markup/render-heading.html @@ -0,0 +1,7 @@ +{{ $class := "" }} +{{ if findRE "^(?:\\d+\\.)+\\s+" .Text 1 }} + {{ $class = "manual-number" }} +{{ end }} + + {{ .Text | safeHTML }} + diff --git a/homepage/layouts/_default/_markup/render-image.html b/homepage/layouts/_default/_markup/render-image.html new file mode 100644 index 0000000..50a8719 --- /dev/null +++ b/homepage/layouts/_default/_markup/render-image.html @@ -0,0 +1,20 @@ +{{- $alt := .Text -}} {{- $src := .Destination -}} {{- $title := .Title -}} + +
+ {{ $alt }} + {{- with $alt }} +
{{ . }}
+ {{ end -}} +
diff --git a/homepage/layouts/_default/archive.html b/homepage/layouts/_default/archive.html new file mode 100644 index 0000000..478c7e1 --- /dev/null +++ b/homepage/layouts/_default/archive.html @@ -0,0 +1,30 @@ +{{ define "main" }} +

Archive

+
+ {{- $.Scratch.Add "year" "" -}} + {{- $.Scratch.Add "month" "" -}} + + {{- range where site.Pages "Section" "posts" -}} + {{- if and (not .Draft) .Date -}} + {{- $year := .Date.Format "2006" -}} + {{- $month := .Date.Format "January" -}} + + {{- if ne $year ($.Scratch.Get "year") -}} + {{- $.Scratch.Set "year" $year -}} + {{- $.Scratch.Set "month" "" -}} +

{{ $year }}

+ {{- end -}} + + {{- if ne $month ($.Scratch.Get "month") -}} + {{- $.Scratch.Set "month" $month -}} +

{{ $month }}

+ {{- end -}} + + + {{- end -}} + {{- end -}} +
+{{ end }} \ No newline at end of file diff --git a/homepage/layouts/_default/baseof.html b/homepage/layouts/_default/baseof.html new file mode 100644 index 0000000..41980a7 --- /dev/null +++ b/homepage/layouts/_default/baseof.html @@ -0,0 +1,15 @@ + + + + {{ partial "head.html" . }} + + + +
{{ partial "header.html" . }}
+
{{ block "main" . }}{{ end }}
+
{{ partial "footer.html" . }}
+ + diff --git a/homepage/layouts/_default/list.html b/homepage/layouts/_default/list.html new file mode 100644 index 0000000..675e909 --- /dev/null +++ b/homepage/layouts/_default/list.html @@ -0,0 +1,14 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} +
+
    + {{ range .Pages }} +
  • + {{- partial "date" .Date -}} + +
  • + {{ end }} +
+
+{{ end }} diff --git a/homepage/layouts/_default/single.html b/homepage/layouts/_default/single.html new file mode 100644 index 0000000..7d69769 --- /dev/null +++ b/homepage/layouts/_default/single.html @@ -0,0 +1,51 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} + + {{/* Table of Contents */}} + {{ $hasToC := .Params.toc | default true }} + {{ $headers := findRE " + Table of contents + + + {{ end }} + + + {{ .Content }} +
+ {{ partial "date.html" .Date }} + {{ $showReadingTime := .Params.showreadingtime | default site.Params.showreadingtime | default true }} + {{ if and $showReadingTime .ReadingTime }} + · {{ .ReadingTime }} min read + {{ end }} + {{ $showLastMod := .Params.showlastmod | default site.Params.showlastmod | default false }} + {{ if and $showLastMod .Lastmod }} + {{ if ne .LastMod.Format "2006-01-02" .Date.Format "2006-01-02" }} + · Last updated: {{ .LastMod.Format "2006-01-02" }} + {{ end }} + {{ end }} +
+ + + {{ if and .Content (default true (default .Site.Params.comments + .Params.comments)) + }} +
{{- partial "comments" . -}}
+ {{ end }} + + {{ if not .IsHome }} +
+
+ {{ with .Parent }} + ../ + {{ else }} + ../ + {{ end }} +
+
+ {{ end }} +{{ end }} diff --git a/homepage/layouts/_partials/comments.html b/homepage/layouts/_partials/comments.html new file mode 100644 index 0000000..59c5f22 --- /dev/null +++ b/homepage/layouts/_partials/comments.html @@ -0,0 +1,2 @@ + +{{ template "_internal/disqus.html" . }} diff --git a/homepage/layouts/_partials/date.html b/homepage/layouts/_partials/date.html new file mode 100644 index 0000000..1c774de --- /dev/null +++ b/homepage/layouts/_partials/date.html @@ -0,0 +1 @@ + diff --git a/homepage/layouts/_partials/footer.html b/homepage/layouts/_partials/footer.html new file mode 100644 index 0000000..3f5ce1e --- /dev/null +++ b/homepage/layouts/_partials/footer.html @@ -0,0 +1,4 @@ +

+ © Copyright {{ now.Year }} · + Thomas +

diff --git a/homepage/layouts/_partials/head.html b/homepage/layouts/_partials/head.html new file mode 100644 index 0000000..469612e --- /dev/null +++ b/homepage/layouts/_partials/head.html @@ -0,0 +1,59 @@ + + + + + + {{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title + site.Title }}{{ end }} + +{{ with .Description | default .Site.Params.description }}{{ end }} {{/* Canonical URL */}} + + +{{/* Open Graph */}} + +{{ with .Description | default .Site.Params.description }}{{ end }} + + +{{ with .Site.Params.ogImage }}{{ end }} {{/* Twitter Card */}} + + +{{ with .Description | default .Site.Params.description }}{{ end }} {{ with .Site.Params.twitterHandle }}{{ end }} {{ with .Site.Params.ogImage }}{{ end }} {{/* RSS Feed */}} {{ with .OutputFormats.Get "rss" -}} {{ printf +`` .Rel .MediaType.Type +.Permalink site.Title | safeHTML }} {{ end }} {{/* JSON-LD Structured Data for +Articles */}} {{ if .IsPage }} + +{{ end }} {{ partialCached "head/favicon.html" . }} {{ partialCached +"head/css.html" . }} diff --git a/homepage/layouts/_partials/head/css.html b/homepage/layouts/_partials/head/css.html new file mode 100644 index 0000000..d5162ba --- /dev/null +++ b/homepage/layouts/_partials/head/css.html @@ -0,0 +1,19 @@ +{{- with resources.Get "css/main.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end }} + {{- end }} +{{- end }} + +{{- with resources.Get "css/custom.css" }} + {{- if hugo.IsDevelopment }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end }} + {{- end }} +{{- end }} diff --git a/homepage/layouts/_partials/head/favicon.html b/homepage/layouts/_partials/head/favicon.html new file mode 100644 index 0000000..24c7530 --- /dev/null +++ b/homepage/layouts/_partials/head/favicon.html @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/homepage/layouts/_partials/header.html b/homepage/layouts/_partials/header.html new file mode 100644 index 0000000..80cd9eb --- /dev/null +++ b/homepage/layouts/_partials/header.html @@ -0,0 +1,19 @@ + + +{{ define "breadcrumbnav" }} + {{ if .p1.Parent }} + {{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }} + {{ else if not .p1.IsHome }} + {{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }} + {{ end }} + + {{ if .p1.IsHome }}/{{ end }} + {{ if .p1.IsHome }}{{ .p1.Site.Title }}{{ else }}{{ .p1.Title }}{{ end }} + {{ if ne .p1 .p2 }}/{{ end }} + +{{ end }} + diff --git a/homepage/layouts/_partials/menu.html b/homepage/layouts/_partials/menu.html new file mode 100644 index 0000000..b09a2fd --- /dev/null +++ b/homepage/layouts/_partials/menu.html @@ -0,0 +1,51 @@ +{{- /* +Renders a menu for the given menu ID. + +@context {page} page The current page. +@context {string} menuID The menu ID. + +@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $menuID := .menuID }} + +{{- with index site.Menus $menuID }} + +{{- end }} + +{{- define "_partials/inline/menu/walk.html" }} + {{- $page := .page }} + {{- range .menuEntries }} + {{- $attrs := dict "href" .URL }} + {{- if $page.IsMenuCurrent .Menu . }} + {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }} + {{- else if $page.HasMenuCurrent .Menu .}} + {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }} + {{- end }} + {{- $name := .Name }} + {{- with .Identifier }} + {{- with T . }} + {{- $name = . }} + {{- end }} + {{- end }} +
  • + {{ $name }} + {{- with .Children }} +
      + {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} +
    + {{- end }} +
  • + {{- end }} +{{- end }} diff --git a/homepage/layouts/_partials/terms.html b/homepage/layouts/_partials/terms.html new file mode 100644 index 0000000..ee6a261 --- /dev/null +++ b/homepage/layouts/_partials/terms.html @@ -0,0 +1,22 @@ +{{- /* +For a given taxonomy, renders a list of terms assigned to the page. + +@context {page} page The current page. +@context {string} taxonomy The taxonomy. + +@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $taxonomy := .taxonomy }} + +{{- with $page.GetTerms $taxonomy }} + {{- $label := (index . 0).Parent.LinkTitle }} +
    + +
    +{{- end }} diff --git a/homepage/layouts/index.html b/homepage/layouts/index.html new file mode 100644 index 0000000..278cae2 --- /dev/null +++ b/homepage/layouts/index.html @@ -0,0 +1,6 @@ +{{ define "main" }} + {{ .Content }} +
    + {{ partial "menu.html" (dict "menuID" "main" "page" .) }} +
    +{{ end }} diff --git a/homepage/layouts/robots.txt b/homepage/layouts/robots.txt new file mode 100644 index 0000000..6b4c001 --- /dev/null +++ b/homepage/layouts/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Allow: / + +Sitemap: {{ "sitemap.xml" | absURL }} diff --git a/homepage/layouts/shortcodes/mermaid.html b/homepage/layouts/shortcodes/mermaid.html new file mode 100644 index 0000000..1c00332 --- /dev/null +++ b/homepage/layouts/shortcodes/mermaid.html @@ -0,0 +1,2 @@ + +
    {{ safeHTML .Inner }}
    diff --git a/homepage/public/404.html b/homepage/public/404.html index 17472f4..7dae397 100644 --- a/homepage/public/404.html +++ b/homepage/public/404.html @@ -1,98 +1,100 @@ - - - - - - - My New Hugo Project - - - - - - - - - - - - + + + + + + + + + 404 Page not found | Thomas Internet Garden + + + - - + - + + + + + + + + + + + + + + + + + + + + + + + + + - + + + +
    - -
    -
    + +
    +

    404 - Page Not Found

    +

    The page you're looking for doesn't exist or has been moved.

    + +
    -
    +

    + © Copyright 2026 · + Thomas +

    - - - - diff --git a/homepage/public/categories/index.html b/homepage/public/categories/index.html index d4e9cf7..d5e231f 100644 --- a/homepage/public/categories/index.html +++ b/homepage/public/categories/index.html @@ -1,114 +1,93 @@ - - - - - - - My New Hugo Project - - - - - - - - - - - - + + + + + + + + + Categories | Thomas Internet Garden + + + - - + - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + +
    -
    -

    - Categories -

    - -
    + + +
    +
    +

    Categories

    + +
    +
      + +
    - - - -
    - -
    - -
    -
    -
    - -
    -
    - -
    -
    +

    + © Copyright 2026 · + Thomas +

    - - - - diff --git a/homepage/public/categories/index.xml b/homepage/public/categories/index.xml index 6791e84..490b98f 100644 --- a/homepage/public/categories/index.xml +++ b/homepage/public/categories/index.xml @@ -1,11 +1,13 @@ - Categories on My New Hugo Project - https://example.org/categories/ - Recent content in Categories on My New Hugo Project + Categories on Thomas Internet Garden + http://localhost:1313/categories/ + Recent content in Categories on Thomas Internet Garden Hugo en-us - + Thomas.Sindt@gmx.de (Thomas) + Thomas.Sindt@gmx.de (Thomas) + diff --git a/homepage/public/css/custom.css b/homepage/public/css/custom.css new file mode 100644 index 0000000..1bcf797 --- /dev/null +++ b/homepage/public/css/custom.css @@ -0,0 +1,44 @@ +/* You can add custom style here */ +/* Enhanced Table of Contents Styling */ +.toc { + position: relative; +} + +.toc-title { + display: flex; + align-items: center; + gap: var(--spacing-xs); +} + +.toc-title::before { + flex-shrink: 0; +} + +/* Visual indicator for TOC depth levels */ +.toc-content ol ol { + opacity: 0.85; +} + +.toc-content ol ol ol { + opacity: 0.7; +} + +/* Smooth transitions for links in TOC */ +.toc-content a { + position: relative; +} + +.toc-content a::after { + content: ''; + position: absolute; + bottom: -2px; + left: 0; + width: 0; + height: 1px; + background: var(--color-text-primary); + transition: width 0.2s ease-in-out; +} + +.toc-content a:hover::after { + width: 100%; +} diff --git a/homepage/public/css/main.css b/homepage/public/css/main.css new file mode 100644 index 0000000..eca9a61 --- /dev/null +++ b/homepage/public/css/main.css @@ -0,0 +1,734 @@ +:root { + /* Typography */ + --spacing-base: 1.5em; + --font-family-mono: monospace; + --font-size-base: 1em; + --font-size-small: 0.9em; + --font-size-code: 0.95em; + + /* Spacing */ + --spacing-xs: calc(var(--spacing-base) * 0.25); + --spacing-sm: calc(var(--spacing-base) * 0.5); + --spacing-md: var(--spacing-base); + --spacing-lg: calc(var(--spacing-base) * 2); + + /* Base theme knobs */ + --bg-h: 0; + --bg-s: 0%; + --bg-l: 99%; + + /* Background colors */ + --color-bg-primary: hsl(var(--bg-h) var(--bg-s) var(--bg-l)); + --color-bg-secondary: hsl(var(--bg-h) var(--bg-s) calc(var(--bg-l) - 2%)); + --color-border: hsl(var(--bg-h) var(--bg-s) calc(var(--bg-l) - 6%)); + --color-selection-bg: hsl(var(--bg-h) var(--bg-s) calc(var(--bg-l) - 13%)); + + /* Text colors with WCAG-friendly contrast */ + /* Primary: ensures near-black on light bg and near-white on dark bg */ + --color-text-primary: hsl( + var(--bg-h) var(--bg-s) clamp(8%, calc(100% - var(--bg-l)), 92%) + ); + + /* Muted: softer but still >4.5:1 contrast */ + --color-text-muted: hsl( + var(--bg-h) var(--bg-s) clamp(30%, calc(85% - var(--bg-l)), 75%) + ); + + /* Code text: slightly brighter than muted */ + --color-text-code: hsl( + var(--bg-h) var(--bg-s) clamp(20%, calc(90% - var(--bg-l)), 85%) + ); + + /* Layout */ + --container-width: 64ch; + --pre-border-radius: 0.75rem; + --inline-border-radius: 0.375rem; + --gap-base: 1em; + --gap-small: 0.5em; + + /* Breakpoints */ + --breakpoint-mobile: 600px; +} + +/* Common component styles */ +.no-scrollbar { + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE and Edge */ +} + +.no-scrollbar::-webkit-scrollbar { + display: none; /* Chrome, Safari, Opera */ +} + +.list-unstyled { + list-style: none; + margin-left: 0; +} + +.text-muted { + color: var(--color-text-muted); +} + +.no-underline { + text-decoration: none; + border-bottom: none; +} + +::selection { + background: var(--color-selection-bg); + color: var(--color-text-primary); +} + +/* Skip link for accessibility */ +.skip-link { + position: absolute; + top: -100%; + left: 0; + padding: var(--spacing-sm) var(--spacing-md); + background: var(--color-bg-primary); + border: 1px solid var(--color-border); + z-index: 1000; + opacity: 0; + transition: opacity 0.2s ease-in-out; +} + +.skip-link:focus { + position: fixed; + top: var(--spacing-sm); + left: var(--spacing-sm); + opacity: 1; +} + +/* Focus styles for accessibility */ +a:focus-visible, +button:focus-visible, +input:focus-visible, +textarea:focus-visible, +select:focus-visible { + outline: 2px solid var(--color-text-primary); + outline-offset: 2px; +} + +* { + margin: 0; + padding: 0; + font: inherit; + color: var(--color-text-primary); + box-sizing: border-box; +} + +ul { + list-style-type: disc; + margin-left: 1.5rem; +} + +ol { + list-style-type: decimal; + margin-left: 1.5rem; +} + +html { + margin: 0 0 0 calc(100vw - 100%); + -webkit-text-size-adjust: 100%; + height: 100%; +} + +body { + font: var(--font-size-base) / var(--spacing-base) var(--font-family-mono); + background: var(--color-bg-primary); + min-height: 100%; + display: grid; + grid-template-rows: auto 1fr auto; + grid-template-columns: minmax(auto, var(--container-width)); + justify-content: center; + padding: var(--spacing-lg); + gap: var(--spacing-lg); +} + +a { + display: inline-block; + margin-left: -0.16666em; + text-decoration: none; + border-bottom: 1px dotted; + white-space: pre-wrap; + word-wrap: break-word; +} + +a:hover { + border-bottom: 1px solid; +} + +p, +pre { + margin: var(--spacing-base) 0; +} + +h1, +h2, +h3, +h4, +h5 { + margin: var(--spacing-base) 0; + font-weight: bold; +} + +h2 { + counter-increment: h2; + counter-reset: h3; +} + +h3 { + counter-increment: h3; + counter-reset: h4; +} + +h4 { + counter-increment: h4; + counter-reset: h5; +} + +h5 { + counter-increment: h5; +} + +/* nested counters */ +h2:not(.manual-number)::before { + content: counter(h2) ". "; +} + +h3:not(.manual-number)::before { + content: counter(h2) "." counter(h3) ". "; +} + +h4:not(.manual-number)::before { + content: counter(h2) "." counter(h3) "." counter(h4) ". "; +} + +h5:not(.manual-number)::before { + content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "; +} + +time { + color: var(--color-text-muted); +} + +footer { + padding: calc(var(--spacing-base) * 2) 0; + text-align: center; +} +footer p { + margin-bottom: 0; +} + +pre { + border: 1px solid var(--color-border); + padding: var(--spacing-sm) var(--spacing-md); + border-radius: var(--pre-border-radius); + white-space: pre-wrap; + word-wrap: break-word; + font-family: var(--font-family-mono); + font-size: var(--font-size-code); + line-height: 1.6; + color: var(--color-text-code); + overflow-x: auto; + box-shadow: 0 1px 2px 0 var(--color-border); +} + +pre code { + background: none; + border: none; + padding: 0; + font-size: inherit; + color: inherit; +} + +p > code, +li > code, +h1 > code, +h2 > code, +h3 > code, +h4 > code, +h5 > code { + background: var(--color-bg-secondary); + border: 1px solid var(--color-border); + border-radius: var(--inline-border-radius); + padding: 0.2em 0.4em; + font-family: var(--font-family-mono); + font-size: var(--font-size-code); + color: var(--color-text-code); + white-space: pre-wrap; + word-wrap: break-word; +} + +.terms-list { + padding-bottom: var(--spacing-base); +} + +.terms-list ul { + list-style-type: none; + margin-left: 0; +} + +.terms-list ul li { + display: inline-block; + font-style: italic; + font-size: var(--font-size-small); + color: var(--color-text-muted); + padding: 0 3px; +} + +/* Path navigation styles */ +.path-nav { + font-family: var(--font-family-mono); + padding: var(--spacing-base) 0; + white-space: nowrap; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE and Edge */ + width: 100%; +} + +.path-nav::-webkit-scrollbar { + display: none; /* Chrome, Safari, Opera */ +} + +.path-nav ol { + display: flex; + flex-wrap: nowrap; + list-style: none; + margin: 0; + padding: 0; +} + +.path-nav li { + display: flex; + align-items: center; + color: var(--color-text-muted); + flex-shrink: 0; + max-width: 200px; /* Limit maximum width on small screens */ +} + +.path-nav li.current { + max-width: none; /* Allow full width for current page */ +} + +.path-nav li a { + text-decoration: none; + border-bottom: none; + padding: 0 0.25em; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + color: var(--color-text-muted); +} + +.path-nav li.current a { + color: var(--color-text-primary); + font-weight: bold; +} + +.path-nav a:hover { + text-decoration: underline; +} + +.back-nav { + margin-bottom: var(--spacing-base); +} + +.back-link { + color: var(--color-text-muted); + border-bottom: none; +} + +.back-link:hover { + color: var(--color-text-primary); + text-decoration: none; +} + +/* Time list */ +.time-list ul { + list-style: none; + margin-left: 0; +} + +.time-list li { + display: grid; + grid-template-columns: auto 1fr; + gap: var(--gap-base); + align-items: start; + padding: var(--spacing-sm) 0; +} + +@media (max-width: 600px) { + .time-list li { + grid-template-columns: 1fr; + gap: var(--gap-small); + } + + .time-list time { + font-size: var(--font-size-small); + } +} + +/* Archive styles */ +.archive { + margin: var(--spacing-base) 0; +} + +.archive-year { + margin: calc(var(--spacing-base) * 1.5) 0 var(--spacing-sm) 0; + font-size: 1.2em; + color: var(--color-text-primary); +} + +.archive-month { + margin: var(--spacing-md) 0 var(--spacing-sm) 0; + font-size: 1.1em; + color: var(--color-text-muted); +} + +.archive-item { + display: flex; + align-items: baseline; + gap: var(--gap-small); + margin: var(--spacing-sm) 0; + padding-left: 1em; +} + +.archive-item time { + font-family: var(--font-family-mono); + font-size: var(--font-size-small); + color: var(--color-text-muted); + min-width: 2em; +} + +.archive-item a { + font-size: var(--font-size-base); +} + +/* Main menu navigation styles */ +.terminal-nav { + font-family: var(--font-family-mono); + border-top: 1px solid var(--color-border); + margin-top: calc(var(--spacing-base) * 2); + padding-top: var(--spacing-base); +} + +.terminal-nav nav ul { + list-style: none; + padding: 0; + margin: 0; + display: flex; + gap: 1em; +} + +.terminal-nav nav ul li { + display: inline-block; +} + +.terminal-nav nav ul li a, +.terminal-nav .back-link { + color: var(--color-text-muted); + border-bottom: none; + text-decoration: none; +} + +.terminal-nav nav ul li a:hover, +.terminal-nav .back-link:hover { + color: var(--color-text-primary); +} + +.terminal-nav nav ul li a.active { + color: var(--color-text-primary); + font-weight: bold; +} + +.terminal-nav .back-nav { + margin: calc(var(--spacing-base) * 0.5) 0; +} + +/* Image styles */ +img { + display: block; + max-width: 100%; + height: auto; + margin: var(--spacing-base) auto; + border: 1px solid var(--color-border); + padding: var(--spacing-sm) var(--spacing-md); + border-radius: var(--pre-border-radius); +} + +figure { + margin: var(--spacing-base) 0; + text-align: center; +} + +figure img { + margin: 0 auto; +} + +figcaption { + color: var(--color-text-muted); + font-size: var(--font-size-small); + margin-top: calc(var(--spacing-base) / 2); +} + +/* Table styles */ +table { + width: 100%; + margin: var(--spacing-base) 0; + border-collapse: collapse; +} + +thead th, +th { + font-weight: bold; + text-align: center; + border-bottom: 2px solid var(--color-border); + padding: var(--spacing-sm); +} + +td { + padding: var(--spacing-sm); + border-bottom: 1px solid var(--color-border); +} + +/* Typography emphasis */ +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +/* Blockquote styles */ +blockquote { + margin: var(--spacing-base) 0; + padding: var(--spacing-sm) var(--spacing-base); + border: 1px solid var(--color-border); + border-radius: var(--pre-border-radius); + background: var(--color-bg-secondary); + box-shadow: 0 1px 2px 0 var(--color-border); + font-style: italic; +} + +blockquote > :first-child { + margin-top: 0; +} + +blockquote > :last-child { + margin-bottom: 0; +} + +/* Table of Contents */ +.toc { + margin: var(--spacing-base) 0; + padding: 0; + border: 1px solid var(--color-border); + background: var(--color-bg-secondary); + border-radius: var(--pre-border-radius); + box-shadow: 0 1px 2px 0 var(--color-border); + overflow: hidden; + transition: all 0.3s ease-in-out; +} + +.toc-title { + display: block; + cursor: pointer; + padding: var(--spacing-sm) var(--spacing-md); + font-weight: bold; + user-select: none; + transition: background-color 0.2s ease-in-out; + list-style: none; + position: relative; + padding-left: var(--spacing-lg); +} + +.toc-title:hover { + background: var(--color-bg-primary); +} + +/* Custom disclosure triangle for details/summary */ +.toc-title::before { + content: "▶"; + position: absolute; + left: var(--spacing-sm); + transition: transform 0.2s ease-in-out; + display: inline-block; + width: 1em; +} + +details[open] > .toc-title::before { + transform: rotate(90deg); +} + +.toc-content { + padding: var(--spacing-md); + border-top: 1px solid var(--color-border); + animation: slideDown 0.3s ease-in-out; +} + +@keyframes slideDown { + from { + opacity: 0; + max-height: 0; + } + to { + opacity: 1; + max-height: 100vh; + } +} + +.toc-content a { + text-decoration: none; + color: var(--color-text-primary); + font-size: var(--font-size-small); + transition: color 0.15s ease-in-out; +} + +.toc-content a:hover { + color: var(--color-text-primary); + border-bottom: 1px solid var(--color-border); +} + +/* CSS Counters for hierarchical numbering */ +.toc-content { + counter-reset: level1; +} + +.toc-content ol { + list-style: none; + margin-left: 1.5rem; + padding: 0; + counter-reset: level2; +} + +.toc-content ol li { + margin: var(--spacing-xs) 0; + counter-increment: level1; +} + +.toc-content ol li::before { + content: counter(level1) ". "; +} + +.toc-content ol ol { + margin-top: var(--spacing-xs); + margin-bottom: var(--spacing-xs); + counter-reset: level2; +} + +.toc-content ol ol li { + counter-increment: level2; +} + +.toc-content ol ol li::before { + content: counter(level1) "." counter(level2) ". "; +} + +.toc-content ol ol ol { + counter-reset: level3; +} + +.toc-content ol ol ol li { + counter-increment: level3; +} + +.toc-content ol ol ol li::before { + content: counter(level1) "." counter(level2) "." counter(level3) ". "; +} + +.toc-content ol ol ol ol li::before { + content: counter(level1) "." counter(level2) "." counter(level3) "." counter(level4) ". "; +} + +.time { + margin: var(--spacing-md) 0; +} + +.reading-time, +.lastmod { + color: var(--color-text-muted); + font-size: var(--font-size-small); +} + +@media (max-width: 600px) { + .path-nav li { + max-width: 100px; /* More aggressive truncation on mobile */ + } + + .path-nav li:first-child { + max-width: none; /* Don't truncate site title */ + } + + .path-nav li.current { + max-width: 150px; /* Allow slightly more width for current page on mobile */ + } +} + +@media (max-width: 600px) { + body { + padding-top: 2em; + } + + pre { + max-width: calc(100vw - 4em); + } +} + +/* Print styles */ +@media print { + body { + background: white; + color: black; + padding: 0; + display: block; + } + + header, + footer, + .terminal-nav, + .skip-link, + .toc, + .back-nav { + display: none !important; + } + + main { + max-width: 100%; + } + + a { + border-bottom: none; + color: black; + } + + a[href]::after { + content: " (" attr(href) ")"; + font-size: 0.8em; + color: gray; + } + + a[href^="#"]::after, + a[href^="javascript:"]::after { + content: ""; + } + + pre, + blockquote, + img { + page-break-inside: avoid; + } + + h1, + h2, + h3, + h4, + h5 { + page-break-after: avoid; + } +} + + diff --git a/homepage/public/favicon.ico b/homepage/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..67f8b777851849527933b78b1f98bd564d8255d1 GIT binary patch literal 15406 zcmeI3%WEH16vro|f`O{FV5Nc>unpZA42Xe(zeP4Fn0Fu>#YKe(c41L;qszMJ-bXDi z>L1W57+rSdLS5OG#!V^IKxvbj6n@gC#QOREdT$vg^US^Tf(#t)%-r+%o^#KA&hHll zeL;V)Z(l$;7%c7yg4co|7#w``eB{|6_?CCW!=`>H2!44k2#&ym2ojIpQ{=j)r>9?; zot^z+et!PXxw*M}BHinq>XMXKboc`~d=&+uPNklCgSOc%pC zkdxhQd};55Lm1#0hSD%6>D`)|ni^JI((I(w8QJADo{YL>VsSr%Ckg*U$-2s8+X=sG z{FIYm*irl0d{!y{D{f@u4p-n@#^$z+5S`e?RJu8p?Lq>0x`@}vIu7kfT z8Od5bMN4D{&~ch_$NgBcM#n%A`@~N^|ABlif3x_ci!t%#JQ&cWarai1&Z6~TkWOa9 zw}_GQ!9UZ~o(wFidYcy6DoF0rq<yz2-5e zTyl`ty!pUE-U+vC*KNN6@vklal>5+`8rxs}uh#LW?(tW105Q;7(Wx&Lm6uJ~)`e`X z^RF;~r?T~jY{_Q$A_iJ-m%jcoHny$5gr&~)r;P=1C}sVP-puv4#i0EM{FfkKed1Em zy4%`}me{Us{}sjpj#~DgVGO#rYen+cu9FI~=yTd>3AzfcLA`SnbFXu|pT#pXGc&>2(2!(N+83v|%y-!B zH|JI#fb9Zw1NxWuxyA*n7Wlp875YYr(Gs{zKTE)l_AX1Q6wmo%>|9k+6aP<2dk>lant}U*_E8rG3D-5uK;;yPx-8W%=Kfda!;c%(fl0 ze&XHrrr^uM0oGf>Z1DFnHhqLl>1%^5TzTuk|3H|*ul4(0o-gE;Z3>^kyq|VB2&R>$ z;3|M)g|TQza{|6pwl*t(FLk^UW^(9F%1?ditXdD)PeI>TZP%AQuxqb<#h1RS^?+T! z8Ck2^t}lCF{~KLC_TZ^~%@^LN9`I|g*;@RHecST~{FkHc(w1kiUj^&=w&0Dy`6E8G zdj4Yla1TF#N4vKWh(zA3A5dm)G|O@NEjS_AkOu zAJA`duQdQy-kiND%)+h<+}gi?*&_V<{_uGJE+68oBmMcH-Rl|t`yCgB%e&5Zsqq=>yyS- z+H#S&ls3nqdmTC0`~O|AJhXPJKi1jW{{U!5hztM# literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/android-icon-144x144.png b/homepage/public/favicon_io/android-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7da9ccf9d879a7277bf176ae17befffea1a58f GIT binary patch literal 6918 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/android-icon-192x192.png b/homepage/public/favicon_io/android-icon-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..c19043d3551f03dbf08b69f051e4ff8da497a09f GIT binary patch literal 10516 zcmd^l_@O(bLt;QWM!GxZ$M@fO zo)_or{brwYU90ZpFN*l;TG{JD22phq}?{%#F>*eyMhrKXcL2D z7?8Vu)@1v<-~8OETQ(?L8vLvpSc;_lSn$CIR`H+TLqcX|mvhaI4TZ!09L;BO|Mq3@ zl=*ufIyOXfs0nW!Iu2W3Hr@4<_Sx!9(8!$Y!aG1!OQc8x@!XR2<+=E%A z6vxP2DKx@87mH++FQ@p*k9rhcf1=JuuccqN^R4%v>JQ?sS4Im^6UYDgmnFvVU3;cL zd~iDh3QPeRH*7UhU#OuLX<#z308)q<%9s+!@N%fl%3({JP1%8;GwOJHM=6#mdo752 zdDcRyajcW?ey_2%HFkAgJFFDY+gqJvX}nod`2$f_WyCtY2p}airpZQZ?0DgPnNnbg zRszKsWd4BnUyw_@Qu9eZSKkH;e@mLz`4}uRu(Ubx2^w^nwS{p?X3?mkme9j5+M2W% z^)VkNruGM-_>~qbCX;mXBL0($JvO?98maXF^WlSq5LP-G|5EDZAVYNbKY&l9ZsO8Z zz-8T%+Cn#85Ye7DEm91E@=U@_dlhvL9P)k6+si=6IcHx^8Cxe)sFJGY^{?N_NF=EB z67K{sV2oVIgEcb4(+vrrNe&oju5zVkQuL+55_ocf2D#sD|Fth<)m^s1*V(#p*KMtm zRd5mn3YaIK;!Br9qvr)iMnA&L)RI9uoY-=-Ljd$UE8MKXaMDtea05C|a>i(dfJ}A= zxV>6JKQXpuww?uPnug{}w|gy~$TI9p_H0$KNH@zFWP6^BaE6WxV% zkZw_$e7L|HOA7)uOrskmRYprdrb86*`dxrj4l~Fq9WMekE8XE#iinZH1(Tg6L$4%7 z1t$ip#r!g zfFTgar=-S{Ym(P0tAAe(r*XbYvXpPi z5ib6{bB>c`5uTIV5x11-4aG5I(n8@=2-=3x!3U2YPEZK+;Fwhgc+d(__8i4B{ADpv z_u^2EoE#WbLYAyG1#&SjOuZ*n+swNrH3EY&`vF;>Pq2^u%AfP2poF7E$*P}D97 z?^iQ4yLNMms)pd0p=qJm7rQ>DBy=1GToy7&m0eDOl8KF?l#2DcXqjCA`iZ{#L^zIu zuTtdMF?(N(8IeF1-5A=Lz$`R~$D9aCP9eZ0U^4wnZGD>E*q|!WusBtvbP)elJWY!< z`rIgJF0Sg87)d)o3#GFE9H8bAmJ zdBr4#n6R;H!*xG?)e^#C=6}hn6kaMhFi})*B4U(qaJ!+#K`1|Ldg{TwZWZj@e5`)t0O+Ggy_Zo5)SzcWY zE}dqO_d0s_{zs?zj7zi52(?Wsp=}CTlmT5rk4p4R2kMt>VFyL~BZg?XI~mY--6Fz5 zC)b%94L|>^=;ArKUw*Om5iB*!Y)3Ii1EqQ_S;wep-Hqozy!93E(5xcP&KlP=^5++$;aT-{VdL+h=upuBPb z!7ENnP2fdvc%U*BRAW6wy%}BBfHkF-Gjwrb;dL$H(R*ky;~X9?W)r+dW^n(x?OivA z2k#Wxl3VY;A~x~M!;s5Q6pOwD!7PCNGynT3DQ&4Mv8=2uAP9|Box|V4o((Je8e<*=s~5w6A0tua_8H z?_j<}H#eK#XOTYBaKm;OD9?skZGKVr^|H>Rb_yhh3W=T;kPP#oseyZrl#^oHQ;h5A zTnhhM2_X`9WZ%XISjT4p%ClF7-@e#_WW;*l=MKT;l^z$RxF1L~R4hejhS#HMh2%5X zDw;5C>0esEK3+Jx!zM=rf->G9X2@6Dd*WP~Jc`6vKGJ}6jjuSSKM%l2uCUmF&UpAK z)8~RGcQmV?C$VGnL(l*=gvN(d3x(q-!xMSTL%V!MJYYqMO+;&DC1WFUNhSU>Njk_^ zhm$;hE8eOeqqnT(F_Rx}mRnbmR$1iHkst~^Dd2#nR$++5k~kfRtB3apSx7iK5CiFR z9DZGMY6QTF>{*HbK6LA^-#z|z@5-_XrL~!G%O1#B!RPlS;f?truDD0KG{IZIPB4X4 zmI-+nG%x+z(Lauc@8KN&%GcoW{LQZh_ch+nuLuRDE5(Ct5}nGE2BHF5Tfyx4rFutp zp>EV17@a2>Kncx=SO}~kwCgAHegCa)XULjevy0^5YR3aRMN&T~GL!R7Ii?w}y*_Ot z7K4_MC4dPN=-ErZdMcmTI^kob!vwmB?f&Pp#XXIa@Cn+8g|0irV7_1BH=yi8$gK*B z(L0Zx-1k63aq&?B|2|%sJbUz>Oy}Dc_wk@q=oT)l-CcbsT0dhWI&J>d83Ardny#n9 zdMyl)Y>nb~d7%IX&QC&xn#SW2mgMCpE>j7E%r3>czVfDV^m#oegT0AOhg?U&d0+QQScZ3 zp&mu-53N4&w)UoDhlk`jUX*0|f;jF)oe}a*D-@YuV^)@DfJ>G6{U)Jzwzr)`04cs) z)+RVupqyNnJfmO0(h8?Ho}&8Vaf#0?0_M!rhNY`Vtc+@r{#F&B60IAb9jQ>I(P#9&Po0ELg`{5576zzyHJYHz!t1y&H{&|6*ol-a)uU}Z%t z{z6hwkF$n!gwWC~%U2m~pAEq@C?R-IJNv*Q)fSTq!|I<-173;cXx3z8$#l{xr606K zCtR2cr>Sc+E49<73&7J0>AZ!ONcLQ;)Y{tQY$@gP z+K@^|x*0Hd5pP|H=Gw@ZXf4Guy~Hmi)gMJ9+f!ZFl1*40ln;e|5f@A?iC~`xw61fu z=6**7N+k3+JjNvWu`(t^H7QOGWp!yWp-h17XJ#l9Rpq2@c$z3dW-8rkRX)jJ@_#mg9#FyHt@27w8dN zLbXBQWXa5X`=ge+5}o5Oa0t4RF}(%Z+3RbjOa& zGsl%D#{gboS(58cqNnvg{;TP-m4e+Z(6ce zvN;GBikO>&o#yBQAFu+pBTn=VJ}6D_@r%pE_D|)(m=n;FBN!Yk8&w!jf$Zfoyu_#= zT7ftCcJCqvCltS%)$UapP7S7)RZSf!(A59%G+dHoUm+bt0pohjoN&idf@Mc-%utRb z&g&C&SyhMxrexLpwE4i`#5<`JyR10+u!5T|B>JDqRNbTf5(7>J+OwFCvZEK1vg$Ih z%5*+G_8ga3HhxLb@ykmLNk13c-&6eW%`ese?RTiY zhfC^VVSHU4<8xBi|DvQW#;h-Ih~A2dsy4vOOgKpfa9?tG6pmM~*V21?%f8nBz!m&Y zk)AO%YoeshRBmkokTb(NgIN<$F-Vkoq3-kP>aBU*vZ)oLn3oHrK7r#tsEz91Ud69@ zWk%SqF9y~#;HJi5th{PbaVd$x4C}3aPX#Uq-EXgSYOdE!ij(oX^R_w)vVcqo4(b#M zZJ8^;q}%d{``RfeHZCsUvYzd3(fwHhc2}zHg)n~-4!e1x_qsjhe9iYE=0tr$+D|&i zE2lo;10E)YW9v3CxJHrjt@2$r4nUZ%4?(6{z) zVY06gD}3+zA6|`g2|ExG0I&wUf!X-DL@F?9hq)6)b*yA3iYPNDqVLl146;__K?>^e zUA4;#eZT3qZ`p+><6AI-Xi1eBiz;zS!&_RYu8&v7|J8feb_SAlJx`~h3B(c6TaAzG z1m8x{Z?~kZr z=eC^coqQM@*O>h_NruhX0`cM=y|{+3~;gP^V3EeY(bnYs9vi37N@vI1Q4xEyBJg|yF@KXd`!N~0UCE#p~) zhNcE}UT7NDz`NOGKauH@{|KA|o82to-(H5@p*xuh^TIuFo17v#S5Z+~g92S8$xyv7 zE@-9xgViiIzkT~NtxxqJJF&bmP`!BO6=^fPMiU~q#A~t>IW~43$N;ixbaVd`;PdGn zyy1af?1e$ zX%zM~KcL?Pi(Y3tq8feg`Q&%=wmq0I=sH!8n*y+J)+_AZ3VE{(V@PJ&wXXzF!L^(8 zEQ1@z=tK4c=3!xsl;6AJ-?TMfY{iB4|9zyjB%WGWNXk@hBw^cGHmYZFoDQNL0!lb8 zjFzR*M3b}cltW9iQmbF8cEVPkVM9WCCZZ@P6AtHCJ>4}gnZ|KN)hw`Mj4n2;wn|=C zH*ZgQIDTL>HKo9dLF?$~xXzNKAI2?q#o&5h^M&eGs$)kWJJTfiEFhV7DRw?qK_(3) z`#ioR&(Jxt{!F*ob-7o1$K7*2ac(;p225ptjSnE3#f#j^F;hr)D12MfPMcFptpM=q zWa0}cVQ)@w1|_Tc1qjSks3u{uq$$8N$Axmf7#`UAToMzlAbDzUTg=PgiTtczs;gCK z2a=PM&vW?JdajR_Km4>2s4+}(Y8siE$|REsG87mTLv4IIWKo|ep>Wt_-)#3@$jbUu zv5R2;%-OFCd0pqQ**|~yI>~m#76gc<8xCqpulqq_LhQYA-81JA2yufX+JpPYCD<@y*GC+B7S%ImTA4S5-EjpE7^U&jVEIaR0O$FPK2+ zg9W6e$9HngeS7UEB=RZ4L5i6uxhBE5=4}_qMIX$Z3T`&f0zYQrc%f}}VgMFa+%RRE zysrTN)X?@Hf~Y9;-dyqETO84qNAugeU+qOjwc&ev9Ot1$wY8j{v{3@tqs`@a z$EF|QXODt^TH82w9>hG@Eq#2VjhjBJKwa+2MV9DD(vPXW`e2dim1H?)XA%$*Ex+d8 zGhV+{DcmSY5Vwobxj7cqPq6Mal%r)^ zOxEJ#v7sbSvTYO?8=uR+kBfuODCT#D9BwTolPTz6(rxaFy)icUbzs;A(yRfXO)* zdi-1%x7gt=>K;7%&Smux1&94LUbL=UHGFdf_8>0ezN!%xMjsM_etGrDd$r*0kV@J* zB6yk4fFl#wTQ*(NtnEguq?>eH!~&>;snRd^{yij!Q8>HxPCmXpQyBIobue~vlsKY3 ziV#e!ssgQE)tYZx(?0+}nLhoQpCBk=^=~#mSJJKXb=`l!8^E)ycBFTvA)7ztG?l(2 zthIAu-IyBI-M^C9(My296hQ-+l;084s`S>&-pel~C5Owf!DSC6Kv;`bq((4Dfl>quQi%kAt~b^0~Na&9O5x>TF0 zqvfU?M2uQp#3{djRMNKn>?~5l46B=(?Mj}`=or%yJ;a>7PC8=FIlMzl1WqgI%K6o( zymt-nCl~XwNiL`8`v4xi9@w0|Ql-BAm820~EuUe}_Ruy0==w{FCJw^2f6-03S<8eea+tB~q`=e0jk8-5OH zyZeRQHTNEZuC4zSey1Vy*)9}qka$R-$UaT`%1bT#@giU?Cf~m<4Bws^6_eH zVuFNC03AJP(PMg`mT{g#M|9PHE2ZvI^HIH6n$xM~Y-VN2z9={xV*aCQz|nqJ>{ZpL z8=V6h)<4SBSLwzziLeXDKL-RvFlB9bSupF^xR#$*0^jG6+dH(PTxPJ)fEDf<-+F)y z4ydM$h9~H5f1wl9V&fOLB~~%*LZVD!31E!2n57XtyPTc;5r&LN<(i$FQ?4;ov}+i+|Af%zeyx2Ad6iU%`g-b_a|z1ye9nc0ve9+qKKCdCm~o>*Vs-A&I6trUv$d!cwhdO4=HF2B5k2f34}@q-JmsZMOU`}v5lm0 zyVVqN`#U_6Qw=@vrvA(1j|wHW8d+Yw8`YQ?^YXVTu-=*_xW1{kv0#~W2`h+rrhCmJ zK^ehFP)Lp!z?s9TAV-WbHb>K+AP3eA35~6QsB#d=n)lx%IatS+OvNgtFvgR<=Am9+ zLq4PtE9+KXGY}|#o8zSmxfPJPX_+L8-H0R<7*C|&GU^Bvo|Njq%=b+Y9Mq{3&4WU% zcSh!T_r0XAs#Yx=sBMr$qh8(JY27zulTMCqAn<+O1sVDE>}-!dE%LfMGHOsSSDFH?39jw} zz~xNZvQ05@bb-K{`=5m-dboD>cK+keX6OpUjS7K5foeXz>+2{dZO0+xGuil}_b_U< zaD9)TIGyKnbzWO3$o%K$&Oh`-s5BqbHlvS?Q?3ps?dB5Yv-2x;VI>B^DN42?r{ zAWT+i$Idw=oSvqWJHP1q?i<&_es%(F_SthUI&r=@f!Nwwyq9$zYf>L79SziqpS6C! zT(#m!UhgzVjrD-N@(;=M(ie=qUYL26@_a@g7CRYsrv4(&BXxyzb+M-Ahf*AE2!=`1;bceEqoV1Q71XLicCu&eH+D7w}yJ>FDdt zIAM~jEAw`_FvqE;{_tBv-DDrU@xHvi{^2#ie=uLOF;ZP?)49rkXU%E)ZWE}Lwb@-P zseHgxL;qu_jJ5d4tx=@4VHSUnBWsU?9}UznxBWt<>V2=M?H~C_*urzekDlE9oRQ1+ zNXf8sHkf*KC(zsbf}6%{r1jIm|71%XQCj*aT$9h0pvEps$=O)GyDs!rvHkd}j!^(N zC6KJjWx93R*X~p*Cbwaa{HU2jZxKnQfzYsUI8k5p0;fP@3~P)BMj8x@epGIV3BF89 zGJFH;5dpzZweF`?+AG74k5cbV16Z1l-ROcIaW~nSa@8jhXmUF2w=XrvtEZZmp;Bsa zF!d|}c`Jz_AHII;sd5ww6G=pGOq+dOl6B!uG#4*fqn~~5&|IL#7;sh1XS0{dD0<$d z@pu0p%gh92;#S_l>I2>J2%qgQ+eIYn8xJHnrwG0 zKA+XvGy36b15CQ@W+@Ud!>m*8YRD2Ty`u~YI?Ob+cffNzP(tBDlxD|iOp+P3+He%s zF8M^BNt#KxVfj<}lqec+aeSn@j^PVVXzRLL_|xiq+d{kJm7kyQ_@cMuh?|Xs{)=De zIK~rk4-KE5);+(IdLdODi319inwz~Pkmfd)@?s-4-4%`b%R9D2|5H~QdS1(JmuH-W#bXN~T> zNOo`<&!+zdc&WC1ERkjs=`BJ_uMS~^{tvg9Z z?!3%q^)0?2YnxQcu`Pc&3Q=olY74xFS%-!e8BYCV15vwj^$=g59+;$hRVg%8gSGvL z=A3wVdhL7SiP(M#`NbmBhF+%6!@YH0mfX)a=yS$?t)fvpDF%AHi`x>xo_=L{}lb$Nb*_VS9n;PbAf|p@3Ceqzp(Sqk;RR2LOR4Y8uJZz}h zP*f{^Us4x`L?#{;+Y#01*ncgOD5_-E-s}6-Ag8_H`=i6V{RhdyUTuB4pfqyFWEpT# zvLL-;|L}n&OShO(Fg7glpeLWQlkXZ5R!fWgK1XWfhGmr3eEJl0veWr+%nTChJgIk_ zWvy*J|EAxmg4476aAH3?Z{Kp3$ z0Z;qW(SlbWAw8n0t|L-A?0)vI*CQ2trho(3>WHb| z$`x9lqpUq*0{YkIV%%l9`6wFcR%dCNNB_8v{Wyud633z>{2BTbND4izPYZ*rJ$0-d z{h@+DqOyUwVb6%L3D`<#&{ANCe4xtx$qNFX4l}1M4QbuM>DDh`NGW;Z&h^#M&%gf= zOwoA`4GpziX}j-`b=^FeG@rfQ6x-!lFzFki;L0m1k~lgT-68GhSn*%QSGD4xkd~Id zyu3t#cwy9Ja}f{_=w77g6u@%nn*OtForjXo&y zwK9o4EW{TPCp&lF4N#Ww>&4^&i5AG>>#|}kQ^`8XSKk^McmpCefYph&izyc zYejdvODX@ET`E2%XH-!YhkRA~qO*MycH?)~p&k6<=UqXm+b#MF8u~kS1S~9+jn?0o znIf{jULY_i$We#}N^C25^vtlmN64NtLWRi?&5%k)7q;oy+7`6?9D; z_TR=9eWj6reW5TJyE0LHj{uWim$GyC zjo)ASQeDJup_@#3{bJug(%PVtAaMkwLEAx|6azKv<|Zs?P&izmfYLi6S-`(&sL4Hu z=B2rXVuFkyI(2{u7wS6_L<|B^KO9ZBB2R-KsP;;37B^;s7H%4!Cq;Y*H zZW-kZBK#G)XSn*fD|*p!5(YDE^F@VNNm~pVLFuyVJ;u|439cSNSS}BJvmrZ2m`#MH zDxMgNfUp*mjrXB@6F`U&x-!PlXDM zDUnz>96nL6FbFWNc|Bm2@vHL+;VAO)W$pmky|Rctjsm;T8F?m?w7`tWSZ`d}F%9@^6}jTN=7K^8-d zR^C1#y>k&@XJ>bN{>JZz*A6FdhmSR)lX7)Sa_x?nbLZ`^6A``$Z!I8){t?iF(zC5C9K7wIB7n;HAQ41Fne(h1Kt1{O| zYm*I=&*)v=eM7ons7NoxfWXC-#7p<97R(}8MVzk@i{8c_e0Vk#a1FP|jSPQ|kYDxK z$+^6_=~^FhM$zsF_!l)r|9JkIDfu^acS&!@v{mdtu zv|3a|Ry+IrF!e?8Wx_w>)HKug*1{jouc#iIt_PXtUyg)A3%8zM;A3)Cnj8;vzV^dt zd9E3_#Xw@mdAUwf>TU1kA0g+3+Mb(`m-}6|OSMzKnIH3izKHYhd^>0Qp4CoA!r%4%%?syDD@ zVeF%>WtvZXtnIm8?y^ZX#whr|N3u`EGBlJUCZYwOT{bb+hlR9IQZ=^zAKW16=b13W VQ~s5dzub020V!)K)hbv-{vQTJd#eBd literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/android-icon-36x36.png b/homepage/public/favicon_io/android-icon-36x36.png new file mode 100644 index 0000000000000000000000000000000000000000..c5ae9bd58b02e059739103f3edaaf89b240c7ba1 GIT binary patch literal 1321 zcmZ{jc~DbF7{J#mq9ArUbw;!@)sAN!NnQYvSF~cGA%j7bB!CDdgqIK`3E{nPD2P%y z%?yGT!9c5^(pnq2YVZIAltV3qBgM*TAjFzL6@(B;pi8GSrOx=r?zi9f{l05=Hp9o8 zYGbw53IJe3^K?H1<;MB7Y%$z_?+?EY#S)$y-3@@UENc_n0_y8Io`>iF9NP@Q$)6s?X#cZF*i47dTTI@zcd-AW{i`%zDGUvmsM3c zs@vy!>MyQdw?_SQHQ$!TdHk zj>qFF6pA7BVCty|Ty&Vp^5ydak4p~6LOY^+A3nVp?2l@|s0c?Acv zl8$q8a}x9Oq=Y0o8W-aP{_x?0(Xp|lq*Gs0sRw=b=U>dJuDx@&`gWJ9%V;!CO-)r- z*W}A&mA5Jzn;*8dw~lB>OeT}@t2%Z6 z(=#(Oot>Ta4GmhYwx*`GuCDG`PftrrOaH(?QE{+8rEoZdVR~IM{g!4@7L8m zSF2mw+S=ROyHu*G+f~EE!`)B24F-d)apgJq_KQNjsO})$!p;*amIRINVfp7$8>F7XxxnXA4#&t#~&oE(3x6yNot`W+a!uWWw$pzF!HlFzKYwjcc@@QdS?)GfS% z%p*todUv~4-%Cs|o5Y`6En8u=a=DFlR=PB^@u#huciQjSfNXQwllw;1fzC^L4CWc6U`rQ z_P!`>xU$W+g#MT8qun@5r+>BvFWnxI@5>AhW(KR)`R+-(?3&76rThT?0h8;wom=iC z!SOc{9{xlao4`;`GzJBrkSR_($UAo+4h)2hA{5lgVLO?OlF7`TPu2em5QxI~-1zqg zY)mZ)h5_s6E8rq75zCIoKsZ4};V6m37qEF4Tzt+^dr>s+UYlJZWNqhJMz}-}ilXi! zjzoY72^95#C=QU4xx1uy7}|Um6!paTyl?^_E|k4NVkTr(FUa#R53F3H5`&|Y1VSQG#3OOpF?^0lh?D-iauPX=L*{ZF*=)oa;ZPhM mFw7aFxFB3-CyYV~MG$)!VGsM0TWYSr3V`O}?JnOJlKeLbz+{O4 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/android-icon-48x48.png b/homepage/public/favicon_io/android-icon-48x48.png new file mode 100644 index 0000000000000000000000000000000000000000..09b3a90c64edbc14452e0ce0d82801f2523cc10a GIT binary patch literal 1697 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/android-icon-96x96.png b/homepage/public/favicon_io/android-icon-96x96.png new file mode 100644 index 0000000000000000000000000000000000000000..b932da1139c372efa3f909c3f91caa0858a8c8f5 GIT binary patch literal 3829 zcmb`Kc{J4D|Ht1xwy|YYBI_t7`;46tW-MdN(j=8^gJH(L3<;yL4EZ6#B#BhUQYm{R zOZm`3gcw2-vhREL@ANyrbAF%S_nhB<-}65A{W|x)9#LhTmb-a9{_{`AHKPGp6TFlvotjZj{bZFjm4SF7EYqMl?mr82Ol>tVmkN75diS! znH!_*!oM%(4uzckKq5CU>A)e#<81utBXJEKjj+#^txlgRUl?2Kl-gl}GM@dGfpulB z8%XygE2ITc8F|KcT#j4Tx;I4O`LBI9%92^Wt5+wKrq?3F5-W{-sMeR4$WqY|^zfPV zWq(;+#tAOomYq#{^U_YJ7G=QUggY-`mm~j%8%shGyD;>W>;0=_?0=}zu1R7&Qm96k zf^8Rtq%jVV_*vaO$@L_Gg7-jk6ROd%psC6DDaH^S3pOK6KqFUoP0c;q12Ydm^O*t; zbOuhix}@xfm!5$ot=w$z+2hM(du}Nua7GD3AwGT38KyTBq&ksk&Tj?rqZ2_#N>6gr zis=JuCznWOGWavR(F;M?i+H@E0wd%yAPy8d~;!YsVhSCROEnPPU3fRlo;uDiPYhCnZN@0-x4 zC2dbcr`OCg^YE=H!Nb*D24r#Qt!7O&iw#=b#YbI4Fu{!0Q=1C?%-w$|=e;2tXDE0^ z9Z%F%kj_Y_4hyYBB);*so_S#S;^M2d zzN*^63fY%!9fI$+Zs*uLZCx)d&SeOZ?wPsVeEDPEc;8gqc5bC z%p;-g+a!zm%N!iLJIOGKwpt}SVdHgxJaF};Y2~exlk^_MGtmouf`3VjJersm>Ux^h z9>%eH`GFk+UN!)A&=5e8PfBsopVVFSS{;KXq1=L)=bYVUtx7=tap< z7T-wsUaQo-liv9&{a&0s%X?Lq!cYo1bq(5DPhyL1dAhGUv;g6km^%F>^=CM130!&% zVK=WK){WiUy3imT2j{KuOFqo%NNSx(*{oiPsPYJtXj}YLKz$!9rg$!?+7}`}Nc?Fe z1e%HcU~5%_dD8!4b(!uDUmr8wA9@s>v`jim+&^3<#k5g|e@QBX*;pw3+@^P|?^0NK_FKZd_jFVo$f+{&lwMd=p*TBr`Z(Z1unha5ffTCVHHFxF>(+8W6 zglRPzXmo`&o>`CB+c8-9B{@zW4BjsKf#AGx9x`$seQ7K`fbj`jiRj67MgbjWPBY zYZPgPJ$Ovnz=cGKwt!s@K*GRzDz9%E-0~|Q)wILUfQ)Sg`fRDT8l4?!B4zHh>3q&z ztbqVh7q44_7ipYwGLX7kx9(9V_ck^PbpmJDh8{0MWH1&>Kk_CRO-HQGq|NoW`@IT9 zMq03z&=cW$*W`0GjxC70RaJiWtiLTIlbrl|rkl4XbIv`a%EAUgzb4@10xNH_FEq%c zy}rfPQJFr7r`iZ3^?(NvPCSiJ~F?LyZq%J5khyNC;!q&sXqflu|T0h{QTfXF{?dK8fYJyWSnu>3D40_b1Qx1UDo5Ql-j-> zT!X40#?;h^Oa@a5vppD1Br&~+zlnp)ZKxgm8~)*r#NRdYgZ9-;C*Cangw?9PqPf=`j;kg@wX*VR7^^Ms8@Hs zc^{V5>5OYs)I++9?x)V3N911FvU0!d)e(U1um3(&d}}ce$({>wd>fy-Hs6!TesRDo z$)sg#RT1-Mur_sC29X27Nke!AUy%+qRC7{h%VU%UT(6z_Q0zRuOHH=>Oe=Z34>i|9 zc^2?XN$Vw@s-2EIcGuyIA`k6k^v|<}Uo50t{SO6d9K@xhVQ=9knz=Z_tV)4S)Nin9 zn)u`5b8X*NZECjpI{VnEf$M8y?HRm)kO7+p`b1MN>>AaryAwBEzc8rT z`D^K7RCA1yQHHsYoDy`q+01{~ITnIstsE`K3Zq3e7L(|eiV=}}I#Da&QoHZO+udJ7 z{{o_K&K`H!`_2gR3A<+}--Zk$dsdl0pX|%sy05=VD7rPT7Op2(ediACs(oZtW8-fq z&6w4Jz?9LhJAxb>926Pt3BJ(!5kA4!r?vX%w5aIB?^So^jCgNyFc()uW6bg%xzOI{ zc)|m{%!ZhuVk7ZjQB0;Az8_T|HBg!U?i8Gg|M3h5N3)MBWdz4O=7lD?DVpsvLxL0uW7@~^vpvG`w;#X5p6`x4j#vD7WG$TVJEnVT3R)Av z$Jl-<4jYEf%9t1Tg>&(D)Ye*85&c>NR+Eme90{y<#B}Ra0IkA;Klk+K=jZL7_s`tE znF|5oYaF^Ah4f<4@mRB}p#@(#?=phA2y^Uno4abajC>9{YpyenHoS7bKrQ4hxL!a$ z?fL1o{I->nEVQ#~6Wuxf-f+6nG8?wuDtS=SCtKY8aBQE#lefJ*(%5?AN5u29H0M|A z-Hb!cV(YxAve%5MUYcc|4}DYZkk)g$M=^E*LKc#badn~6ehXX*Vn~SDDcY4m{Czt(O`{F z>~i#S!#D4q{D2a}rO^iZCt2D_<~bg_l^+adQ&dzupNVZYPvH{oJmz-o6k~TFS3TE? zgOl^oh+X7F)afwC7g%Hdo_vGoSH& zEVk^#!UNBz=FrT?j>?ymvuEE99SRk>B)@Zbcc1KChL)#}!gS$f_Y} zURK}fQfhb{HNE119Hrk)Rk)%Z@e33U4qRz@+y$S|K9&?uCkW9)gGSFyYg4l7xL&EH zfTYU(aw9`RI)A(|QP%qWGKmZ5omD?)lmDx8NUeJRl+V0q$`sl>;!~Gb<5nQi-ZE$USoAhXh!Y)6l+Ise^uc+j5rxaGW@@?gNSIyxZt$ZF96@efb z-~ZtK{m*OQ2)NPMzG@R!_2=ayLo~Tc^uQ8v2=`zd(*UY)RShM$rjm-9oeCVGqKeQ^ zQ-H$}aQNk6$?^Xa;1}RQ@Vxo|2S_IrJ2L|ye|iWB@Fd>A2IBxckr)_)fWZiUST7v2 z5Zrx~1A@KYc8ljRS>Zpd9X{004S_HYa1Zsv`4bTcTP7L;s1zSH!2XRf|D%FHnBfRs zcp{*pql$D2y3AyR{-N_f%oTzM5&sA2dm#m4BB%d>SP}ei#G8RQ;J>qi1^Rm#RN7nr zn~s$olLAz<)OEDsIvQGPCebtDOoaa*I+q9$H~?;FnDs<|f$6gUhwC!N9PlLg;+R8+ z`S}xl1H53K*f4^7fPV<=f2SM<_i%@Mda7fwDq1S;s_JSuoEA=1N5xZ11E;F$rlO+E Yj8JCg_mXq6kl6!ZZenfx($F>bUx%vZMgRZ+ literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-114x114.png b/homepage/public/favicon_io/apple-icon-114x114.png new file mode 100644 index 0000000000000000000000000000000000000000..db7aa9d6157e1b29b9458dee7603a027e593f401 GIT binary patch literal 4886 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-120x120.png b/homepage/public/favicon_io/apple-icon-120x120.png new file mode 100644 index 0000000000000000000000000000000000000000..1bd8363f07e28e17707dbbd7412589fa7a5542c7 GIT binary patch literal 5265 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-144x144.png b/homepage/public/favicon_io/apple-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7da9ccf9d879a7277bf176ae17befffea1a58f GIT binary patch literal 6918 zcmd6McQl;e*YB7Ry+i~Ny+j)sMjtIBq7PA`45AJudJWM-h=}NX5k!wL7+o+4(R;5^ zV#pAkD5J!k?_Kv@_jlj5?*H$4)_L}N&iU+p+UM+j&Us>==xNYWu~7j409q|gHAA9I z{5MhDB);+Lt4%~f>I8$s002w^^`$Kt@tfOT(+~~-yu1$pghv4Y=fte=4FJGT902%j z0{}q(0RUJ$KYTGzBo^GX)6q}^T>txgY%5J6=8*ep!5@=v-lV0Xf#S25t^oknN-Z^* zalrge&P59QjNh`#ssCv!*TqeLCrlh!HGsv85g_~)Y)}N6&$psW(>#Zr&k?%TJHx__ zFy?7%rDi6^T0$9CcLaU;&5H;Oa0LNvjB^ANNpis%0M=@K0r1BpWX|O{y;#oX`r_oD z!F{D^WIntS`kA@q_2y@-BzJjj zNgduq{g2K#@&6j3e;Xls=}22;(0*$9@mP!jh*FTl@SA{MCr}^l{Wlk}9`@O;ItD56ybus#3ND>{|k2bh#RG06YyB+6}Z`qM>td z4LRNGJI}}Om^kShh=L2UXc?%ago-h))I6X%1`3`;)q-FaVPK0x*95Ab z?rxia*aTXD8;zRoXTmR+2Je94>({?MrHlncC5Eeus?>=<&d^U6GV`B$zPtH^!ZxXw zHkm84pi%rWXz|7mDD!6etwcl4V!{L{S3xhtjS|fS@zqzQP#n?FrnWVAE@n`T3Ui5K z5JEpB58E0#NMdkaenbI-e2r|sI-QX8UJ$d7cc&z2K9+X342WDEY&mo1VBmIehO0Rv zrLg!_(fCBh0soF$$rL2o!XQ+BYQjlK(H%2U9@75PF$7=nx3_|uTq+&kIu~aT{`gy; zgL57*KUr~POS{87+^UNDD-|)tu+uXNJ-Y>jaq|`d)b^VgxNn?B(?u0OUFj%Fbw+}t)29D~;KPitp`1K!QB2Mpq+P1oMb-Oh zs{Ici=GOs53#B(~o+r?)^74=(T%_29-J;fsQ)#3$gE_X>8+7Lr zGW~8*%=ga(DI$R7Kp>ABXn}4u$K(|j88Nyc9!>|`gdZdvMn=$}Qw%@vU|vPsq1h$S zd^gI|=-<6)^`E+f;vj8N2|Dh%+>cRtDBP7Ys4f4LGsEDhYH+r#r#4t|( z>i3f;=(UfD5SkR=0coD>YZK*M{LK!kXE`Qj0;Fc?@pT+giA+vQ0u!>T?)Zo&)r*fz zr#hk-EStS^xvn?J5C%hshm5A~siS?NA`rN_;K2teJzk<#U81I7bRCWYm47RLEBT(R z#f9^F%(P~{-+tqCM79x@i*8*#yfT<;y;-O#!qggno@we_0rog$2syN0fh)pB^t4Mwg>;j6OJ_#tIz=J*IYTVzD{+g(8as5N5=~8Uikc`q#4Xdo zT|9U>hl}1XHk@=oCrR%~Ij)wd!(?m8!Ox;JQaI=A-7`r_PK{!#f6hQnX4K$6$}u^~ zA&zYF@EZ#_C%?vompLx-gq6KFzdpV@f8O)cv{DU0 zLa~uf)v(+|Q&6g}C^Ge9@MH8{`@LMH{Bmmd>b;8{8-zZ7fm0UnQ)7v$NI_mKI*ebO3obk(nnr>ZyLI9>XcDt{JGQ4 z%N-pYWCdYL+CgS&}bc_7(H&%HAO@H1AHfBVyIU9Uw4h+Dh*l!=pJ?oYLEF zM3Pxa#!`n{(S=5mKl}121Mq_y6_Hr}h)Ala%6ioxc=f8)n8xG*kjjoeZ-I`TJ9{Wm zSKw@}Trl8zQXc!azDiuYI&v@MTKGM?^59NP3DM64(q_d&4YhyatB!tw^}P2&PFDlr zqihRaPp}E8$?CPSZswghFTD=|IZ7!;e~Rphv12YYh9ihBrI-Gdd#NxbJHpIqLIjlT zs#p+A4;Kxaoa6l+K*ICT`5&ws*97_fhZHq^q^4DtKTSDbh8s5|WLW>DjG@!>ni)gs zeUR(!Iw}>)h^u>Bf-5wSj)ANlhDc>|#s&bb18378wLRlwj^lC5#tAOj6x-su4Q&MW zai|(748&w1dNL<8+Hdkw;$3maTMM~bN#+fsj>CRhJ?s@*vu-rzfbu*j$lRi8|JQ<` zmcS~Ey)awxXfUPqykCDmEupSLoJ6P^6gQXYv#sK((75O?*dTBa!nJG^P#I^x@KGwA z$&AreXXPR}ZJe$6SS0eQjfVatNvpV8teJ;~){ue$mSG>*)_?e%vZ!lU36WvA@r*`53*=Qp|w$)w>n z&^9PX8&#Q>O_jGE4R0|~;nt3nU~p<$U{R`Bdgqbla878XuSnl;5~VkRC%D+G2{WjT zQIp9j0Ou77W(Z`yc@1kUFhpbO4DFhY3&xxoPQk7$kvDE^=l$pz+X)`hOtpo*r9A#9v`b6=P^GXmb zyCN01kiNLm7VgfF7~Qe)AQUHy9qfwB$egYHcP7<^yOdsVbzwNzj&HX3#~-ZRIIV7N zdNZAc#d0#1(TJ`?x9&7u?2h1Ga>h|p+ghkUc}wy9Q-r`c!rq**n15=XZLc-tof@R; z+h{<`%IDM$zmTjU?G}Qr86&FC-v^s&GQ;##!TKSve_eV>fgoe*lpeTV|Dws406AUq zAurYc3dc0*f*eycJ%_EqWj1)xlc;9$2%(#3D1iH`4&SvYs%b3MWXkF_br|N5R zK%&yui{+UsM^-L4n_cM(TkhYT#l+RQz$G<|7}TzlVc@g zs{AWD`c&q7Fj>a<)%gys>FHNTG&{3nyZOwjo;@5fjX|@@x1tzwh?NSS_5S?+Zih`U zP5XAOn;nK#Lh$``mSZifjgkdi#Tb_+Tvb(DQ=_W*>j|rHbxlo2$123o`DAyPTa6=v zrkn;UR5vYhwuNLYV^@eimwyqO`@Ei6ug40R>c&mRj9{6^$}<|u%No3yY5>0P-)ZRSQwER+!CWK9 z)j9myeV*}Vo}uW-dkJ)mZ_|!>WklI?m%8@%xf|RbnN>PVPkH=>&&G(UF%)qry%cP= zeDA)A+X|qb38*C&fT6-M%KeGx$o2SbU5i%yT=|3+xGt6V(@zvY=#~CuB8ody%R{KkrNPuAp_t9M~RxVZl?D>5m!H;0wT=Zzd}6kfk;QMtIwF4&#_sBvOp zqGj>XaqPG>GX?P0&YbMfPRt(u7^lL^tp71J0V&w*S=_mONi$S3vOVZJTlra-=Ja3% zzsr}m*B&cSEk+;7)%qAO2y-74w?;SbkIsCzpCB7c#k)++-x6a`XGVOB= zV%-?Q&9W^pHsz92Sb{x`rux|$b{O=FdL3S3a@1yV6`LI4VaFCYShmK-w27(7+0u)z zBYi0u3p(M^(b2Q=in?C)Q9HA?k=XCOnzjQpXp0RtmYa2P9|2W=x26BC&~rN3+9o+b zBHVP6`}h@J(1}CG^*xqgfp>zJi|1TdWwL+j4iHD$yIHw}PDK-X&-L9((9e#Jcq-8$ z^~lUj`7F5X?5==s;nj^RXWE9H#39FKeC_Gz%tFpRkZ)SJP2sVsaF=!48E@EGyh?#F z=ru%dtp|%wf4n9TeITJDvL-If@KW=kMHu=XHllh!|u_ykkiG zHw?##{;m`Lea;Szuk5(A#Hi!^)0YdsFg>BS1%K^#-d_IoJ57{HU1M`|(>5?L(+(4b zq^xUb!qjys}mfMZm$B~;>OClERD z*{Rit2lWrd5VF?7T_ejc<4UpDOf2AMj*kAEJds0^77Mjz>0Rw*!rJQ)glOnRV^~}O zF9wyzJx@(xLDE9u;vi;b z7ysUXRXECgv+~N)odf6IKx}8m?75PH!a!WumF$OrE5DaPhkyQ@BjX?bN z0h_*GI3`@p*eM~i#e+VJHcrzHZ}Z!EqGL3AiyC)Tr+22w-EWc9&u;iJH&qUFbnw=z zi+!4wWt-fR4qnFvg;p1HWH;3CF(fj*3Q&acCKY|HO2A@64Y@F1R!tb_f7k(^AN@Z^kFA5cTP9mQYHr1IS+T?`eky9{zn1uIfgK9Vd7XA z|HuPlcKw8zV8S?*zJ*OA`(r@rGVQ_qJ*LZ%LL3NDE4cU^6n$OwUsq6S8jb}PwhKRg zu;YjGG=#f0oFj-HN_HsySCv(v83^OC{LIc4Tx0l_ngwiU!F>DnZHwU+ge5Z6JvTO% za(px1W8okqPbULxWGP1UO0jCM7F&8$ydzfXU1rS8t&rDiYw3US2()^$rK63FjSiKK zpI=&YbKuE#CU@HJ3JwM6IFOP@?zo-&@>JzQQY4M4|1|J?vow&fp3&%#Q$KyVI1tuz zTVJsq5s1DD9ytv>>=O(;A>ik)XI?J#rR*KWdxWMm69{4n(%EqAQO@4}VC_gvfPK=} ztG?yKJnTWt2Za~AC8wto_C06Qjo8P56D~l|g9nH62RNy$A+g#o6Qv{j)_=Fc>`~1} zGQ4|oBxGF%c^S`MQV!Gvti@TcQCpt@t*_^2?s9RpY@Vstw$Hzm|6%^Dap3k8B2B%` z>xht6U|8l_k+S^f%kj&cpFeXh&kGX{kE=rBr>36fzC0IZi|>Z_^=a2@i;dEl*LmUa?d=_V+Xb09*K}VfN5$O>h6Xo#i<6-$QDx;ACfBR+Ktl2R+YF>`r3t|Y zx7d4rEnoLsf2$o)(!iKq_Ga^u5)X|tRbX)2OuIyyR)O}Vt|-IG-k)a46ZYvz}A z2Oaz^Gg3Ux&^HoE3*63AQCH+#_Rbv|_~-hdPQ)YUvBu3Y06E<@{`7ir?`U#D{{Vlz zH6ri7&3b+QA~dG254}}clsLKNrz{teWh^rHm$&)&xW8xFhDZ6tWcr?;b{B7Kzz1KE zuFZ*3c{%Aj+lQD<0($B*7xX~GqhfA8_0x?_Gm;3K;NTC-SF&FR@SFkRDufA@^)O`u z|MkgfXo3TznIK-%%ucWJhv5d%6QhX?%;UU31qBW>^VC~roo#rl=RaA&UhLxjUhFwJ zd%p3wK4_Hp-REx9*Kd5$&`9sNYRmEkXAB+3+OWc2hmRF;W!W!dLuA*H!OJ~I ztv27E^320(w*mux&iHwBA1VGGa%{PWc|G0!C(O+){`D5M@#m+{UT$hIQ5EXK;coIH zfBr}r85t=aZA-2Zebey?rnPmj`3N6K?6EuIUR7Gj*!-K?@70`Pmj^wK7w}6Xt@|lO zhFZh9Nm%pyhY8R_QbAI(Eec!P$b%B>zI=Z^1-ncmRkjI)- z@fEFXB=I>&S}4%W%*;gEKbL-B-K;B;xms?0MfEx=L2kY(e0;KHe#(f*XA)azNzwFX#QKcNakgblSM8bQ&$&-4_rG6gv@QjpM9SC zvlpoR-u}gp-&60IpTtcIQ1JZKN(lLZxgKqnIZB{?bB*2EhBnW95+!w*RfY~cV^j9~ zFQ@lE?%w^<8tT!kHHjp=ApXn{@O^CN>tO4PgxY%}i2?u-he(Tw%ZN!x8cT>nB_L2~ zNl|fesJQsk1+LZqN5Rd*0p%F@|5xCTE`3H+;QqG;9}h?07q;F=fU~c!rwf6AAd=tpa0c4aAP70AR#LyFDEW9Ei3srbR&QWq5ls%MyQuafViq^YJu`LvB=~{|-4=+`(Sl(NW6QRzg<79wH@)M9Lx|@)C}+ h(ntuzPD0`VQR4xzeU;?vMZ_8aT95VADphS>{V%3+0lokL literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-152x152.png b/homepage/public/favicon_io/apple-icon-152x152.png new file mode 100644 index 0000000000000000000000000000000000000000..4fb3e6681b45ae4097fe1b18498de410518e7176 GIT binary patch literal 7594 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 Hz|VgJJA8Q2 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-60x60.png b/homepage/public/favicon_io/apple-icon-60x60.png new file mode 100644 index 0000000000000000000000000000000000000000..ae8a2fae74d7dc2c9f52c102046be86b0e4b09b5 GIT binary patch literal 2093 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-76x76.png b/homepage/public/favicon_io/apple-icon-76x76.png new file mode 100644 index 0000000000000000000000000000000000000000..1024007ce692068a7a610831739e7534e7c8edbb GIT binary patch literal 2841 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 UJrtNI;B^3yW@yug2)C>M0Fc-Lr~m)} literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon-precomposed.png b/homepage/public/favicon_io/apple-icon-precomposed.png new file mode 100644 index 0000000000000000000000000000000000000000..a829446b291392da885a18e9da3407dcd3d5d988 GIT binary patch literal 11039 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 NR@GIhRkD8je*o5S8z%q& literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/apple-icon.png b/homepage/public/favicon_io/apple-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a829446b291392da885a18e9da3407dcd3d5d988 GIT binary patch literal 11039 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 NR@GIhRkD8je*o5S8z%q& literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/browserconfig.xml b/homepage/public/favicon_io/browserconfig.xml new file mode 100644 index 0000000..c554148 --- /dev/null +++ b/homepage/public/favicon_io/browserconfig.xml @@ -0,0 +1,2 @@ + +#ffffff \ No newline at end of file diff --git a/homepage/public/favicon_io/favicon-16x16.png b/homepage/public/favicon_io/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..b9c00fdf6f5e8ffb48ee77f5ab2e3d138da0f13c GIT binary patch literal 816 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstU$g(vPY0F z14ES>14Ba#1H&(%P{RubhEf9thF1v;3|2E37{m+a>n1*z4QSa07RK=&{vdAqwXbg;^L06FX> zp1!W^FWGpxc&sPPd6x+k^7V9a43W5;oUlMDAtfov<(cv34VyL=D{vMR6@LEkNs;pd zHwPDIw*qHJSEsj!mm;Uf=@X|;dMp3n>hkIeI;FLWgVD5<*H1QJR}%W#y8eT$-DjS7K!q090DcV7UDMZhbU0o*+}KtUOXP(=$pK3@wcuVhclo zYQ&MufvO45Oex6#DY?8xkprki5=n_~W^QUpWkD(f*j4%kdFl3>!u-(8@eKj0VlXr} zv9vI-G&MJNt$R@cRKkyBPH<*bDuaQO)09PaZ-7!^NK&Ceo(yT3IjKOe>*wZ`m!0(-ykK~AT7-#G11W6Fxkk&I5pKg)yUE?&D=EA$SBFsP!Fg>59q#i T>`#{fZD8bP0l+XkK9*i>m literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/favicon-32x32.png b/homepage/public/favicon_io/favicon-32x32.png new file mode 100644 index 0000000000000000000000000000000000000000..37eba929b64e9e092620340ddafd936437fb16e4 GIT binary patch literal 1220 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 literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/manifest.json b/homepage/public/favicon_io/manifest.json new file mode 100644 index 0000000..013d4a6 --- /dev/null +++ b/homepage/public/favicon_io/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +} \ No newline at end of file diff --git a/homepage/public/favicon_io/ms-icon-144x144.png b/homepage/public/favicon_io/ms-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..42b74b0689b44fb43fc7900e82bead8c46279cba GIT binary patch literal 6918 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 iN+Tfz~g@Bje-+vWfO z_#*(o=#tT(D~l^2w9t441>F9-J~b62;NB3S)wGm}wg~T$lFPi$*hc{X%pcXDig54Q zz0Au5mMQ;f`7$#$_u>5^QzPJ6t1=4#Wn?+`Hb@y3t}N)P-^V|$tuMgeO>cNZkg^A- zxTTs=hvg?;TRchTOL=LX4&{QuRgF1Sbve1;vnvV-<9#Osf?gjC4Lx1>YZ|bb^+Qb= z=1RW5@y%Y;qBBG>!Jq_MRH5SWm-MuR zJ8exLaVn4u=%--^h5-6Mumk7eS#S3p6PkvEn5DM;JXigGLP<+Lf* z^G*9)AFE(8DFQwzQsH{!xc$J8m|33=x{x+W+z+w8n-kSg@99-A@t8VU#WrU0lPqmi!o1YcQ&-@d+jr+Y{MD+gDEkpMe6UOu|DLgASOiAHXc z3NcxUQq^R2)Ckzh{!&(O!xUqR zXg(9`!0SXkEg`{U!$>428jbNtQgSHp(|5i=P!r0HMRmTr%>|KDC%0ArKlsbwOo@sq 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 EKQM?Dga7~l literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/ms-icon-310x310.png b/homepage/public/favicon_io/ms-icon-310x310.png new file mode 100644 index 0000000000000000000000000000000000000000..83666ef1a52a53891b451b0d913407ce7264e47d GIT binary patch literal 22613 zcmeEtRa9GD^e0fDSc?{d6ff@36bTN&wYa-G6of#obD9ZE@EUyf`WDZj2LGfooLHPnfLAgVo`tlD2_l4RtWmtG1gvM+ZrU*X`1BxD`gqo8O%D#%D``7R!I*e6pB zq*UKF4`c-Bz)kcb!tSRvl^hyci#jdmcAozH{F#2t541!cBZn;p^Ng~ZM65})5>6O@ zasr%=#ArbDe7NWe5}F@06h7OTIj1KQ>PL_bJZ7C!o5%19QoSC)q3b#(b`zwE>w2#` zj~oxLL&nzKDyjbe;Q#*z{||BSbRC2ir~Ug&nRozKZ;M*5r`Xc^jWCym=ff*s6IM^b zryzI2%*|Wg;#9t$RMy$gC%T;weJZ79mhsa-tdEbcJOrO`Vy5i0&Ah&9U>J}AoNspQ zRB0g+^7y-cSQB!?D0J^!g!XP6|NE9DKR#i8GoGvaerQN)K@@t*I7^)nTjs|tRxm5% zrnQ-z0p;sOU_0$ET>1yve%wr7$rrofSi5wPASx+%jqzr_;6T$FWb73E8{0QBsV@Yd z9;|o(DS2lQ`po1pxxyJbw#@uG^4mbE990d!s3{zCyluMj7pX7#u9~IjMe!jriZtR5 z8*-fOr7H7##K6`Y4N7i@bqqo&5aC!#KD*KM?^AT-@-ZzS!m-2yla+#s25m@oW9T#U zlUV(P>9Sud6qkGl{U*Wo6D}Flgt8H!fmjoz{-Cu`Sub!`HQN{QU_S74<1$!H)_21X zhz0!7W4VHtf5#i#NVbzqDL|Br1am@`EIm)QOi?we@3j&WC*(#|Y4}8f1_OO1a+D`! zqqz9kLld5;urH4r(RiCaj&e}$Aq#p4_rERKdBt$L4>E4-`z8OB9e)@i%v zY4{)$Iu(8FM{VvX0qauobPKcj9A4V+?V>=qg3aj9RcJr<5`KdJuFYH!OG>gzd^**t zrT5(zuRzE!aSR*JB3RufQR5favtk}E8r`-9b{PrS5mG;u5sOvyhKf${aC$pEqU7K< z^E}_?7j&96Ooo={JKrh6hOA2dmGD@Du`s1>q{zNJH=21`Y4z))@JQlD8WJTsqWRIC zgBUBXUk6SL>f5OV+IJ!T}1>e$&87a%-?jbx(!@I zkUxnxOH@ljV$6e#j*}@w%#}EEI@J7P@Jvx1n8`TI&08|Yo@xqb=l;e(&0U9w}tRvB02gxS|Dr(fC zF%{~*CDhOT7q@sv(jGw(=EFq7%x)EN#EsemTDz!|vS6U7 zwZBLFQ~|d$g(tz| zC;BXfr5CGCbdYeB#C~0E)1DZ?pOI-cd-M8!4j(3Yd{*>+mZVc&SsPeexx9UqF_Y63 z;WRh*_CwP0Pk%vkL-X>30s8<3G!$dsK2I0?s9vnAIo=^2Q@ zcjXsqmlhN00boqSD9_Xzg*aFDws}WAQtS3e1y|u(;x%!D=&dIHT+!iU9*aeVdV6A} z0o6`2JGTH09P3B^7fE+F(*Q4RVE%i9Okp$uP1<39L4M&nd{z%(!w+^B-ou4bEk1}| z=XdVijUG@9Emkm_+V^a+HK%8OaJ-ltqAWHG)J2-DnTfI|%)?GZOHgD7o%#VCbil9v z`-@w)9`v0{1i#$6>{ah*zD(h;Z|c2G?jctW;inJ@oo%}9&hKMFH`_uB=ZXDh5Y#*Z zP43ioKp_osHAwS;Xft1F$YM$qbm@9?0_JR6^N|z4TRvKn5JI2LE7~z}dU%~q6)c;m zLO3W(WM==PlB+hQvA5s>tq{bm2&iY-pH!5r-_RBgvSar)*yl5YZCEfg`zIP6{Y>{v zsuLW~k5f@Zo#rl3YQtwPC-@noC_2&8(-U!5w+H0<%6bSTDF|I+sUnyEVdF~KMe?Cd z;L}E2+uZ{s{+^HOOGa^3;K9_CPY(ze-`vN(1F4 zHEcVxYz%K{3bemM#lYM3m}w^urAM)!5|{SYAkMO-spe8xUWtjSugOK9LQa3D(Y`Ye zSV;}wXkgL~Fv9veReZoRiP&2~$qefa$fs7$nj@;re5s_QcCS~tUI_f8Rwl8gU87B{ zhV@m$y11T1Cw1JSMQ|PvNXC{#V$Rvdtpk6aN32%>Y#go*2_N+F}B<666 zgRE)0zjNgWKi2&wTLo*y@@~E^EJ=aXI7NGcqOJ+7K{6$mGI^d@8t#(~I-(Hot8=iBYVS!$tr4%RBx=G zB<4|z#=XIa2lsLr$gGTZR7z~`-n*kZUvlR$j3>N8&`lNDMewmrgDs=lm2o&I5MS^1>y+nk(h+nq zRnZl~Bzrp#MVNPIC|B|Z1u4ZWQRfQSFh(P-MC}bS&W4gGS zJac$V{1I)T+VVo>s&3Pvx4V0{H)`2cVj*oFdzD}AI_RGgY zDHs^R>f;u*gm!#l;MIEuP0Sm~7vc`|g^0Z+E*{l+F4~c6gVdts+dWdBuDhfmD;W|n zy19G~S%V&iHJy_IfaowWB0|ftt{Yghe}?$Vj8z!U{f_U15S;RwLW$wR=@@DZ*Jfr= zZmBoCDT%BTS^-w-Ub>ASQ&GHjpr}D;tCJ;NQXRa@x`flvt^HqWExlfYrq-qZ$Uyy6 zb~SDg2HV7Ud>VeyAcyx3q6lk+hjA8o4qgJh0u1>ejhI$ zO(xe*UGoz=)JfB+7!hQ>Ia}wo-Q-Q)jbT(7il$caaEsP8%;gQlFAr|lww zGk)ncJS{O@(e}DDoPr~@0B$n~_MK)g(s7JAt*VtL9lQF(3@J-%PZ1^jw@8RyFieh( z_O(6|Z&#!37*6~%Rnc7V89zkdBm`H)lrB4mM>I%&d7(b6ZS}fl;goC>a@hUT?Jvuj z(CyauoFAuqs^L6(mO3|#LL{=^u#Hn2S-tWOAZ#+uTPz7F;f2PXsY+sNS^FA?uPuhV6a2T? zNR0_cs_D=kehm<#X&*Jb36uEv=Qx4{Z6cY&xr-BwrSoihAD$YJ!vo0i!#I zg~?Rzi@RyxCl=GD}n zu}lOaVB9deWrA*I{BLfP%q-9!eGF4QfUdmUWi;y0MoqEPv9~3^BbdwDn2sLszpyPm)kX zW90!Sya{1UKU=8cZf<%87+aa)bt23QIc&c;WWI-@x#meI_e*y+XS=z14T8Jmx@Phg zA|la#*!<(S`zFAs&ZtzS&w(LWN1C|J6%v+t+?`r_<~kF$LI$ndbHkeCTeCCb$+Gn_ zR51{f7eMRy$Ij_ItYWOH`6@cmOeR~abnhwwH+)lM5Ej)O;S8O}hmH-usEQACDcxjesu0oJz}A=@5HYBB#&H(xLnrmv>KhZxP} z@=is4Feg02@MCGn5Thk9lb0ga{(WYzhBDwrU^Ai0B)rNbS(3dw8FwV#^DW-=(dSvA zIS0>YBfqTDnzBK>au#*4C1e7mCPZEW5>%CMSR1G@&TAw6f>Pr(S2Zk@x)PK&hSEEI z?XXg1gQlZoQl)ONfXXZT`(g{#-8T8EU;CkUH)D&N7MT?AaDU71e0)v4in!Q<3cP`s zhchY(iBj_BAVxjpapHHKMi&+c?Nf=hEQ((#mKk`JALPBERo^z4I}Zd+M9F51$|vb_ zs^=iwyJpuHw@2DN9w|CgxAeg|hz6fb0?dgx4MD`L&G0*WYfCNX6GLrO~TygJRVQGQfp0a(m;B0G*$zfEh zJi_Xn(2uYGTw3O^waph}AUYNaFr=*Cpu72dci+=IP~sm2gHx4vz3*7w2~v&;lB+84 zhtl+;cY@hZ0u^$r2nK(p^0H{>{xrtTVczd34Ev{U7_?vRlwZGs2~g`_{(KQp$P>dX zG%&!>zsU=BWY3-59I9ix8V~oFU+}+^IfX%R++Qm9aWfm$LT< zMjEx7vPd$Dk>}Ag3HJ2z`bG0}Lw9|&0(Mksn!zAUDEwAQ0CX(1k;$Wt%Ud|uXpmH- zp$mlSSRq9PHRlS=m3GyRRUOw+?gbxQx)a6CApsS@Yc&PFzA5|h(8rHg*ED$zOgPe% zEgDgZ+D$q**_E%}kRh z!ugdklp4WGGh3*;ax!Do?mnT-Z7P3`Hp645`xy102^^2FsmNX+m%x`rTNOue!AEM* z)`{PnFB#9VB?)+_e^}K2K7Ubd(ius&Gr~=CaRk6%XQePu3*; zh&J&_CBjo0aoA0fPXDy9^DeNEfYBZYJZZY`X>A+368wdAXEch+_^M3jo8k_3w8u|@ zEx%K0E-;4T1hd_x-IdR-Q-{p*N-usUJOY;QP~jUTp1s*OfW3q}F7!g7N>EgEW9x?3 z56FBXx*=FR=t+VT*`M}}HcF2M@8pqy4sQ`sm|k_6q5Lt4v0w_zz8)T#&txzBQrUR9 z0w;`+b$TQ+M#`T^QLSmwW)OfTPK%d0NSix%KEJdg%PLC}hDZ&&I!z&4)-;~itm%Mf zwCiEnF>wED%xu3svo`7asnkZ8>lwyNWIEjU#}98BOL@1p!odeW8gVOMQzuR48!R)w zH}%hX=D?Ns6Wkd$rId(3$y;&O5up9L!+pbB!>!xk}pjt_!O2LcfuLgj>- z9)1C_rceJUbm7wImzLvq78g;c&6H~+C8Tslg#`A;9{x|0G1mGKU$Vug~0jx=7 zS)Vz=P)93PYCmv@xA$8**e-@kg59upgx=q~eO}PKO~S59NaU@DKk(fguQ`CY?*)as z)BfTaRngjk)3BR>wV0Z^B4KKPi9!Zk%EKGjdkzX*t!P6+IA8}(dWRH(RVFQ`!HL3@7hVTc2Dh2GVLta`}G&u zH^HcRa)AYVD~POOM&YNgH3Vz2oZVLx?zR#HKEq`n8-Z#mKsmIpWH-P>qJAuL+Q-R8 zCBIIUq%8iX`X8K&wRqqqNgm%F{m&|KWGMfw88#_(MgE-8bY;&NJF|#M8Fcd{u+4c4 z!8(DSCI_LO;=u zCDe#ue5YUhomt2aDLH9dtYuls8G{<#cHZbEUIqQo;b&q$Nb+#(82Rg;tjZXP7H@;1 zB0gZn$~M7^)y_k2cV&M8j0`aBJwy#&2K$>Y{MA+&DQ{&16&`Q;p^k()DIcEp`!Odm z>v8z4NL|n)RXU8~#fNI=x`u9A>>j4azrs=yYxlmAzZQJELmyw%aTKsPU0h7hju^H1 zrwn=ZcLZFM$I7u3*#Rky+PqU(Vg}FKy*CqbByc98KBiYr_7h;D&J00nj{YM4-JsK9 z%+++sw9V4v1nvFi3aO(r&R2}iFE3KatP8HL$D3Z9wCla_e|seAI~oYgTXpt4FEVay zr8C&J8p2B%pH!q14LxDlczWHjk|{9f9hqUwa@|=TgGj#9a@-fn^xQ++u>Rb{oHF9l zvRf2~-Evay**+;~9`IGaa{})h&xPN9tnT~*g*uC4JK%;|gT(WGT$e<@|5*G1z>3~= zGw|aS|M`Tt+PF(Khf?g}#PW=ud4#Xpv}?TUVbAp6waAu!$VK;bj7Hvh7X5^}V&3qa zUDHxlPR{A?zvEkJ&^&*SjYXB^ zV`4|Ln z`LszT*xnH;lPUA7@JOm0&;S?MS*`D1m;_k8AjQ?FO}lWRAtS_ ztI8;}x43SN$`7orW{{*q@0L(!;;sj7ui03>?EHsjshm#trcf%uPQe>wt|N~bB+LK$ zRFvkUH>XyEO+HS`L8gu93aM-UV>8J1ci`h#wJ^sXwMGkv7vdoJEjJ4ioM9QTpK;J- zs`0eao;acXN+ycTC6ueY4Cr+q_2sh$r6;kg5cGcm^MmRMKdnbF2INa zg4OfAv&3?p>LYJ6)_(seYEESoQfa4pcwrcrHC7YDM4ccyK|Lyr)cbDgdyI#$ce>X0qDT zsF!fbf|G}rSMSsmp+bho?esf?G0gCn_sgx9wnu+EwBc3Q(*p0_^__#zR&7LZi}s3d z*x1U&xTCUWW*D9xb_bN1iB0^rIX49B690P8?N2A{g#Fw~njiAWPvIJb3F&VvY#2=R z;M3P@TKVb7nJ79IBjehHCwbITyGp@S-h!Q3{Z90RD=&z$t`W}7e)md}AU|dOW-Df*tGO@q zCBFPjmS7|0(`-&g^_A6z@X9V?s}1&Tm0!{&$V=ZvuwpILkxv)jw`b=xiMHLqeW3+8oB^7=gXXlVYn|LB$gvI zCs+%py9%s$$*v3ET2yC|&Csv7IQ8oH6}A>uW5KaT#MzKb-C61D;IYBLF?rApC*R?P1=efoWor=iDcn$;E{Z--eC_l%9VI2@!-|OOc`{8`kCPap z17B?CDmx(S;S@U4p_1e$S<@8>opgD>d+9Ggp(4STSp;A)WoJlN1H^+1ce6kfLuaEd zcepH3SsdBP2<%0cOe~h5>0#r_GaSsczvgP0AoW#4AZw_24jiS3@-KLm98*Y zKO!z(m-jzR?dmjhfE24+3S8uEO>T6iuw#|M%|;Hg-8B2*EF&yfwAwSJIc16 zHZTas#7JW3njhN9l!3k>Gwbs7`G2lkh}pg5$2w3Ei${z`q5ZIzurt3)9OeW^r-oy~y0H?7; z{kwekXc8YA`#xk4ac}|Ub`2U|Uq{u?nX+#>1u5h#*;TL75Xg?bV_52&Z|fVd{ty=y zUB%M&<_u)18mIFSJ%mx=`$Yd}v1RcLok-hUB&G3Lpgon@r3Xj*R#Z3Gd}bj_gM=sy zH3u;_&Zx+GCY87?WS=oNmzxGcqz=fp{hf>s|Bo92zInA7V><5pN=@1|Mr?+F3nF!J zR`HPuXmf21tLS~rN?>}|^H99s`Pc_Z`DqSI5cy_6l2TjS!;PFc{TN?JsfyP%wXDXZ z3%;FCtJfkY5<0gn85*_LD^<*GBd1>>KfP#D9mBQb7BkyBddNz%b?*+{{6&%1u4Vr; z<`ePE%199Rc|-Za@X*}RF{?2T)%bU1Ipq@R5L&Z^8g+|<@zn*biAE_VG(OVsj<*BqqT6h zn=oke;sCnf)LSs{5+vpe(ZrCPtUheQpq+T1#~mrx&|cX)nl*7Qc9>B`>C^Dsz~c?o zB>09Zn|OLNCAtG+9n&ds`rFj$GG-HQ@;Uj*>?Pd;-%y>~Lqp9^y}#l@T(whn>LgM3 z*VHGox;`zRpHb!H!i~Cuv&Y8X0zWj4za6=Z>TE`$eRCmhBJGuVH{X6cP~l3X-^mHx zk05W#Nj%IK$m!`FzoO6wZWP3KqTsEl#&@h3gSZO^HA85n-tfPs4hkEGpF%Ee`6W`B zV)_}zzu9JGXM6bi{`x(IIowV zCam<1;iR3wQsDd+!kE5DZ?eiBHc>KVSNGE$n~t&SibC_-Jhom&iAJ_hir)7LB5HB5 zwQHK-Uc`@}@t$yeAyH9T$DTl-DbY}$pU8j3*qGpfHg|T92jIj@jZ~#n6=p(gDio*& zkhwXMa_)LCiU0M4>d+b97mx}dRu%i<%dczf?ugri@0$eyPA)DmSjWIo+?&vWm-m66 zu7UUQ)I6CJ@;i+-oJc^3McB<9TIb4V^KjQmUUZ%DrjakYZ2OF1#JW7FG6Bup>DkfV z(PJEIhD#~*?#A091%>4N7P{*->?F2+7u&S3*aFu0S2qv;gHX-3N`N3KKf0CvIP;Id z{;rODY9w^P-aMVRQ4ER)7f4pj(&I@7JgH8Z_#zYC$$Vz%l-=YpegviQPMP`h6k)+B zgav0|X~n{_Bb1R&r37fG2bNT1{S&BqWDWVMmii7^Fyi8A&exud{U6^0;Z2d0uj)89 zZ?+OPH>HbVtct9G6Fte8>)26fQD|C1Ue+3QHhWmFP^Ztay0OZ%^u>!u#(Z5__sYPB zLv=gOQ>V0HGPpr5sR55JP(rxHH?*SA@Ha~wnVw!Z34$(b_hKDSuQjwN94JK21+YRq zVSv}KU$+F^zwUZ|lncCCuvKOvt_S+&(Bd%|Q~^73s*XL4@czr-9CDarHqi~gg{K{P zD440Js1vP)_Cu)+4TCnYz&+A+96g2}Z3NoR-)kemDcjo*sAG1%{ZCIXLe}^fv#B2& zP|X2TE!3yPx=M|TC)lbEo7|f+&U==U5$@D^?GGVBO;(~^ zDn5VDNB;y^L?^9=H5JlcFw{>m4#hl%`%D_RZx*YSv_)3#M5ki3>SrV}Vk7@(?#|}E z`{STrNbdf90@3SkM0Tcg8M@-q6gN-B%{42Yr8;k7mO4V#T`SonA`$V0<727RluN_B z9?fI~2KZg!E)^Y8erd8MxT4j1Z}3TyeYz2FYb{wZJ!)eK`J$9o%{Sj7lVh9pY61{D z;3do%D9)5anWQzf>wVHgKqm?kr;TyqcF235!>lmFS~75-MMcAt9Xn+}7)H3_^1}wE zw0tn_(qu1S09PBsI+M~MDR;`91LPoE09anq?Vq{d8A*#^MRnse!ZVOwm-{mib{o^t zL3waw%#4*01O9mQw{4){G3YgZyr7ua`qmZ{2IH^eV8>`-;hZrKvdoT+jjfvvU5R6jhTQ|y4&YH~(ysc~bV4Yw>1Fn-N; z3W}$VIqi9Ey8M?}<@oe&zlJwm`DO$DVp^a=iOrx2^ZYhTvMXK(!?A8f%!e=R9uNtv1ND_svJO_zS938h^D|6OKC3|nbBpD0xd za|@%#Ox;-1=bw#MrT)G`^fR%J(q{^1Z!foa#)sp_`!#?5FmZ~wO>&8B!#IIy$Bw7}*Uaw?w%F z`LLW8kbL83FQ>&7npWA?&=_ELJ0-R`#j3H)I7U*XH|g?C+4dVO&s;eBD=$O?LUNW> zV{n%TuQ<8zX`O=7Nr=Q_kj2Cbz1NPO zhuR!Kh|XFtRk{qq|K~08#o24(JnPiAdwrd-#FiOPj@ijsAfg*t@f{f0CYlK2YF{DD z!e%Q*X&RVR5Xf7L`B}t)%uMvrEFNFsV&_7m$s}}V+k}`|YQpMrd4JLzVHKB8Sp)$7 ziq#jZ*N%w>j0~Nf?a-XUDW^IZtY>FurzK*HQ`!{S z*bMFK1?Yj6F^VCdh3TY6Q{GBcl5K=9$tntQdokB2NLh3sP92gyV^=7Up_0UC$(Qcw zFDzAtwt79kvXHmn#QS4{JQj?Fik#Cezu$)<_r0e|MvKPM>?%3$yyHsY4FuXpfD!r) zKh$ZM!fR)|nO*3v6S!bub8j1U#U=Amj``qNTPCRy3rw?&{#h|0|qWmZ*j0)apWbI*KlUNR?sVgqDV04-qSaR>UEdFN1vGlhJGZ&Zz&5LiIoWxxIMxpbJQ={g~9z$kQ zl9p`Ly?g3#xq-?m`;1sj6xc!*4<0Wj^xIIqnea!MV8|4lSykuW!g{*f?Bz66*E+4t zT9RuRUe8)}GQ(;Pn2wSL&KUwae!B_0Qz1H|Z{Ret_8a2Eof1%*3liI?>VzBo_#u7Q zJAss8XAWx{8v4v?!CDk(%`yM_ej~l6+}3nRZK?$KYV$bv^Q|ov)v{bvh>HmQiL+I4 z6k1g@Upebu5R>@DNqdA1tjEs4?Rni;RkfeQPqJ+W6Yu(HfmJ&PLD)wKP;XtkxFE5_ zs~SnuP)s4-#$7yoy`mZpn!}UhZ-iHM#7|)|D8DWGoqzr5=UgL!GwSx)Eb|1vYCH{L zAE*BzSN1sdOF0H=F_4*X`eL!KX;y$*c{N%USy=1r1gWrhs7OmvQkp)?-wV+z!U=c$HRaK@2wnyq^c@slYqnbtt(t{|HDh=+g5fK8yrFY zC#>-_HieOO_Xg!CY%ldx-r3Fin$3X4KnL|K85NqbYFXF@iv@e6_&1eI!;Ndr_URhSI7)95#v$N z(OpPUUYd(gXeCZLT-!B>00IM_A-i6h$Lrc*1Bhj>ky59YUw)GBV{A^F_p-d~^S1nw zDs*c+4j11q9(o5E4g62&tPN$dMNv9AnOM~RltZd6>1sTH2U-sP5bv5nsBEi0>ms|> z??9kbzPf;*2xs%BeNwprW`PYXHO2a=Ek9L2-+_~>yM5D$zj!g>cyl{3F?tXZS5NIt z*?G$&J{Bhn=?jUVl!mE9oe#aZFX*cqf32&5g{nb9JfIR%icL?e@;-SNkJBTAQ?_D( zai8={@dC0}w24qE0pTZFxp3Xl=QLB)8-1w9axl5`F0)uxQ!;_9sLicuq@t#CcxR{B zF|aH5KeCzS6P_ZF;oR6%Q`>P*)+g;>f@?tfQPgj z5wTY}x*N*a>&@X8><5psxNKmkB>i!7<1+_Nq>mAaz$D}Y#gR~f1Gdr92rrq6@Y^kN ztgO1k4*7NU#fDWONs~lYRJMYs4vFK9fOWbnxSE5Drysa+x@oOEJ)<)}xDXATUOzhe zJcJ={$c!WKQMA#g`eeFcPSDpYo-vy<)pzmFx2RbY-EGLa0)FN@?Hg(V1I}urP6$n} zGE>1~6;K7Yu@T-}-xfDT++Uy|ivCWCIH1zwS5#1(+}cY3D=SnA>nqVPSYErJ%>>Kv zJwifW67U`g05;Rt*W3ns9;LwryhEU}0*=h7hLtxOB)sV{NQ|&QR|9Ko1Q!tUXR8W{ zjt$kt+=3)owVClBej&3F(x06<^gadE7cunE7z2Hl1E`L#{)KpZCK z2__Q%7!6je{c$>oZ3&s3bcT(R#rH)ibJmkWj%ahyGZ1&$msYOQu`{aG>s_z=wFW`K zq1%fIQ;)#FRy{?>SP}wsF-d|iwKZk+8wXB<|Cv^JVwA}T$NTFR&o(nb3S_s56SO4C11>r1!n7yaFf&7( zbeq+*8l0JC+G%bqg5G#g^mf{z0Xt-`QP4GWt62~kVGfC>rlp8_$LEq_|6?b=}AC9X3_Z~YWVr3;wu;q#(o;nzbkgo^Nh1?4wnMLb)tv|NL zUj#xUg#=lB1KrY28R^Dw&f055Gjk?32VVM4TZ%PNKbxXc=P>{CrZoDyvNm0`U-=47 zFt`}cc@k=X=M)Wn!%YXd3^E-4<6wRG&8e%{N?^>_i)Zu3D}>`Pq$`tpeaKQ?6!o_dDq#5bipvzSQ*oSNgU!tR(l zY)W8e=sR6tHC;jKf!XwsSXjG9%ZK#1D&h#l!rzJRsK21y>BH(%#eisJfP%3m;Gqio zuYFGU{Lp4AL!2JM${N~C}|vOW2x%?kKMlcI{moWu<8KztcdfG@t2tS0ueTj#Y|F^Ouydv~gt z<7@k-C5ZXpQ;%FjlR^4@{l}6dq?o9Xgg$Xjj)&Rn-eWDHi;gt%zi*2+u{hLrwhU}n z)SS;gTK)}s_Q}eLJqi6Hi1W|uTfG5i@eJfPFpflz@ZaS>Zvz1ey05M$g{YN-tVNT< zi=W7>3-10M&^3uEC20Q1x2+0sf+Frwg9(Vf@s8=FdE35P$C&S6(^d^Fagn(ODF867 zN$X<%)IPIoN#<7FtH^ z{E=+Rc#A^P{9qL!Qt5+qN@m7zWG591$+kS(#Kh(n_q@c5??M|c{TbsX!|G&W|AXWk z;o}pNp@^>ibtBd$sUoM5bA|cftor8mw&R=VJwDt_>#M+X`hunXli`XQbrQJdQ0u{> zEjBAlR0v23NleXcZC^raKQ;{8abbnroo8n|2cKPwo4X!Qw-AvJ^vQi^o)d_}?MePP z-q1MGGa+^#^Su4}(e$?K>G(Mu*|+?k@TK>6Qrlw+ut&-$eq!HCh}7jTFR4Q%!&OCk z$uMNaVAPHP!$;G3G`%9N!x;8GWEg$duKSftJ?5Q8S@RH)t;AhW|7r4MxU?(^YwY7N z8w47iGgCLI=ctm1D70@BpzHL);MyOnhnIGbYewXk)+?1L$IauFX-27*^uXc30FgF< zOwJD@W_@miOBgoh3$WUw$ovGyIg^d9hqUJ$0TuZj{%<{WvgWuJRiWPuA|x8rm>Atj z+JtE3A% z0T~K(>qcUHj4tSC)SPs14+S$Y{qw3+8klChlg+m8iz}ww_Nvp0B$+JUpaIh&TMU>ommHX$@Vv z@h84za7Rc(`I zaQP!zIZ|`je1qIXftqT}QC?HPvT@k7ik7RM;j>SpbneJxrU}In4GzdWzTx8~(x-hson>JyTOlPfubx(Kank0ZD>s z2Os;!09r<=@19DttyqO#J(azcb#KaL>awWydW%`UAXQk~aa=EiX1o0{jl8l<>?w#@ZvzqEAn zGDojsA%E`pXB#Y5Gb7-d8riI9!ynxrm3w^O>n>BWV&gn%nem0D%6)s0w8I478Bf-H zDI`S9eOJ2%1N6=} zu>uX=YaPMyhlkFKhrrF#?=v&}ZQ><3XsZk-K_XPefvTy+SvlFKePpH{*GJOzMD0&^ z6;4h_=@ZpYgC}#Wv=z(2c9r>Cwbl`B^kH3JPWlC@OVez`Z->j4dIq2B#IC46c$ifJ zV>ZdZ&3?g)-@KnVALm?sTY)s^-dO3cv2FG?{S73x#4`t+wXHr<;!`i%g3|TEW4*(J zyX0zCd#+#fC$pB=N*8|=vHX=>SG_EURrqsZ3^Z{VgDy@x#zzgBFJZxff50?qdm=jY z#?{vHB$KhXu-_|n_H)Wbz3>3&YPWN83hf_9hmEOU`cjrGY}>tg>))x?wqni$KssTn zB`f-iX`bYh+Q>%Cs5%Z8_;>f%&kwf~yPpD(X24U^^WkU2c=i&ClT#(Er6CNO6dEdx zgoEnkEFX4z{9To1ua@99gielsj{b5Xl?kNgi)_0jk|nJ2PBy7gBGB`}|5|D+!A9x2 z-%3YD-vFhn;uvFJ1%6bOsE+!Y#@R*2AY-n2J&&ScG7w64g6HE6O{qn4$iGC zY15@=O0{9pdLO7c%!hW!uSYp~=ykYt?YW>cP`(Lq4%6?9tiUQ+aq&Fgd3EJiP|e=@a?a0eBd)_i)v9ehS64uD0AIH9Va~FhOxp@q zfMRs3sbxjB9w6TvTe{xZDv=Z|5b9Ro^HSr5GeZFh@LOa4&4;P?#RR~4@+Hf~i2Suu0 z3kwMxLj;Q3HA&cna69wfyWhFkc>N};isQw8~XihDsK~amsQojc8_>Di_ z<2MIfb0Pb75l4>!%N+q}ZKf+omyGb{YwX|JnOtNq@uHo#xA*R+Hh`t?!_61iI(aAJ zXXnpxcJ9?Jn$M^B2gZw41&t1$D}}?iF`u?s4YW1?oP%WaLyPOBD*D7sQ;aV~e>9tC zuFTy931@Rv>16gNm5RP%cB+U+ZuCS^yMM#&+Nn#Av~6y;)IM+c9Cwa%JuU?-cYXdL zFlL9ec-xGH4}l5}*K6KB*OLaGCpW)Z=lqjgO2!)Y=X|$Q(iZ+M&__v~al8~3JPW&Q3hEnzX;$$&fl3$l^g9seOQco!V$*(#k|VVe zwh&XWX?YaF|DG@o(XbJux^ho6VHv48(jAl+S|P>a>^*9J6_$ z9iULGmhT0jaiH15+hF87l zK9q6U`+@{$yD9mk=nzSH60nTBGF6|9h719^X+>X!7+2?EYIa=BCUTFwR!*bsrOHTW znERGTY&z$Tu|Vfs^!OQI`YPAopisr08^?d&sO$ds>-E0HrE&hb0P1};LWs^YkgU3B_*D1QSn8_s z*+r~|R+wt_8!>QT6~Z=itNXSmGJVq(f*g0Tt5#C2zI0Kn>{-_n%BmHjic9Ii&iuay zMmiT5TM7leCF#s!YK^D%{n4wJ53;5RSl8d=zQ&33_TzG&dnMa1Pw(eW|5rO#|IhUL z|2f?`-AO1XcPWL)44Ip;QYsWl2qDdku(^%J>=Yrn=^#sD=TNC5oN`z0Rw z!*V;@Y&Ns)b2*>y0itW84PB6Is49_@805!OU1i7zV^KFQ+Q$RSV*ovfjG{_a1@GzPcG4rMHPCSOz5PmUo=h8$efo`&L$70}g1?nz}a3duU^0 zV<;=My5G;6b5InRUNR~W+y}OqDQ1D>h@91a@HKYOr1BKX-AZXPbq!T_yTON0iuTU=5`PM}4;LQ#I zLT2Ei=5qog(^uW3)3~J}o`{gJoq@o~sV0f@+{^7oMZC{lQN`#tKzL`-@WiCn<8^g) zf<6dAc){O0u?SAFfWs%6muZahss#>z2+IW@YN#36W$@5;4b4TirsPeMNZ!Q(@P0@0 zdh%}smUr~$H!qA7`Fx+}o7`@TgHI*N+l)$*Hbq;hON1mzK_XeYbRZFzxMuJ8+iUkd z$QLJ6)(>sVQ>@ZTcxxc8`(=6&tPO>~= zC5^s11xr|AI^!6;0ilpWa3a&u#s!hg@}Y#qx0_ZaNpvm)IAr}K93rSR%Xty`;?DdH zOj@&Om0wSuyyIODir*&5_mF6Z2*LLpd6n&{O`?Uy;g+aWqF-Xc8WO7XllIR7GgxWq ze#w0EavZC98JOvTHIRQTmf|x@J-Mi^p}`qT)#UWF6E4Sx-0>675SK)FpmP8Ckp>2N zx3u+mrB7oULOf0q^i?I=l~ILlNcS^OTx|rS>ue+fq#3OKRib!fRWtwlKsQ<_K9qhl zm#VlhLO$i9%fGffI5-$LQ|!-s_${Fu@Gw&YWXU#MF}H0NyU6K;?KV+Yla2xZgzQsH z8&FIE??UI4IZJ?Dd%P{P5ER*kHC|yk+JB5-pnI}_vT93I{61FLJ}Vo9Je`|77XFdV zR;Zp{8g8LdbvJ(qH=S5o$^)(`ayRv2fbAdWHsrFC84P3~HQ3tV_4Q%l(+^(>oJe8p z_3Q7t`DO#Y4Q>7WT@HFqPEH@W8MzF_L|{H~RoY->Wd)2i`ZYuIRqCSQ**w>JfJWqQ z{%YVz3MTY;6_-ue-SA4RD&A2)3BAz)_cz`18}kV1cE?Gr3in*6va?F5 zwa4dSWAQc>?sqWt$IJWPEt5r6xASszGXN0=a{q&hev1$mc9+sIm6V#Hu!f@TLqkKu zO}JbDyW!3yc~{W!h3@5D(j|n{Ibl&m=YHy}`ZCJ{jp+|=Y%NX0R5=nV0AM}1wUzbx z^&pfW>#uY;rNNekW|7WzlxK-xOh2;B;?zyRyb=D%hyFLCbz;N~u^_)Xbkm*c2e9M#VIW4%lAmNDJQC=-Fp*^k^9NfqjPO zdF#^4t;F*$U%YtRSMKp|2Rr8nd;h^)d+`IhHl|o9uD4pTqWDE3cG`g?CVG%PCP&d) ziBIntLbd{Hz>Z`YN-juXDXj|in33_ROx5RARn)7sS0nE1v-&VC)I}>?;BLwfn0N+j zxVUGkq^p|F;3eKmT+sb+uFL7-s;nwcPHz#eIgL9_Y2}J7b5{C|KVLn3vE|pelo|3T z`TNXQp-IP7eX=xH7p@@N$p~;wndBV+Gk|>ZtugwxNM2)+CSobrY1wWDv~AZDcD;J*=-~(A5v{NDq;3jd zqwI1CJyx%lELs6(dXx1tH}A{ixby&1wDAAbgM)+(rVTO1;Hl)(LwzR7_VMbNN0+*@3uQH|j zb6^zkj~xB=e0nw2BvCq+x|UUdsLfdksbY6qvB1O?zs@K*M2+K9h5Gvp%g_*T+Dr@j z&y^!u>j5MriI>WNcQe3vj9+B+cg7iOO$B)OSHfy4DN4K&voQ&1Db{{5jXTU%3NkFr z&5wp;=H(brX1Gr!AV=Q~3>G$#Cw!G1rGzIi*}oJRAeqv{@!G+*IgbF8%%-pMVZfYx z0I|}Oy~cZ6dl>ow3C6|)KNz(Xyow^XTRKF2;_m~vX~XZ|AsjquWW+}@=|R2%>KeLu zAvR&D2QW+oQc}`7$x=Il18!;&EDY-qLJ_&F@2V{2yo^`ZjOiSU#T`4PxhC!W1UOi4 z7e^CoO-*>9v2SQMf?zv}BYF6r?oH0kRm`{n2h3q0cnR#ZTB}X?n%3hWpXjC+S8VwM z{uoWvcOk^_QIhco(wDQ>Rx8$wZRc*gDt)-r5M6+&KSdru$A=VV+ep$NSV9NWFX1h_ zF8eGZw9QJHuiCW|;+~u>- zw}+XqIrC&vX6D)cP3vl)OQO2xNGvvcD0X3y-L9#)-UcBRQeNX2Q?dD#aL=06xisb- z@_TB_SdJWh_u9MiCkj<-FdyBpI-!FYo9a?s{n1WnZv-HomAGtJkHL44C9~ul<}b%~ zEOJRz1m+7=bHKf(Xx@QDwln#1NL21#xpNMEE-5mPmIO-_5@&(j+!w!I*>llJL&?rRHv4gY8T zXF|^YvAL$_v^K6-aXrA`;q#9}E`1+jFtQO-0K$Rg^IB|dh=2Uc3I_-K{aHW;19&R{ z9%x1ajwp&U-;lig=efE}14vN4mw;wM+vn8jtNZYXVENQm{EY*wmLOe z(qAX%zV~kNiBDBl2?lram^eUOjGG6VYOsHdLUr18lYjYIhZhdK7Q9#6ZjAvb?`Og!B<;sOLL=(mGJgQe1!IaPKWkZow11`j*uk z(K1W%B-Fdm8*B~u+Bscz_%I;!R(PtHTA~Yv>apB!Xc8Mhi1(NAM^#do*Dq&613cT< zJqp5Z`b+8^N!Tj z*8!hBKLTYZ0$FfOVpGb#&*NdOw6zK-vwO&J%IkQRh9-U$y6M!ZHO9OULjKI}?zZrcKmQesev;@nl?kJd z<~k$BXd{hHQi*8zRfM86o#6Ck%VTqM^U>~+Ms0hCs-be?YkJH`C#$gkd!5HGNzo`x zx++N8r}DA+&CS-n_(?Z_yeJ~ggg4QalYJh3D3CbJ(}5)}0Vgt(&JU1*Zo?%>xrC{r zSlTnuNwQwV<%|(?=P6JrW*BtNb7sA}9rg4LtA!7>&(7dqVUH85Oq_w&-?j0Pq0*Mj zgm+&e?UDD+gM}f~k|9YFH7!d-pfV`U^fxPdDg6P?_!u5r7>QrA@e_nZKXxpZjPKqc z=*aFv>;ZJv>XHruWn8>iNEhcX(+DJO`#3QV7B@ZP2B@UhtMJKkD?eZuWHpJ+fCv60 zsIBkWSI`(jz#O8qgTdybfE}+|dRRZ}gwpqS!WeCB8`n~+PMOZy{h?b;7HHyh5Ug}7 zqg_!$Q|(KrDNw?R0-~QJeRiO-Pk|0oAL8Q8%=&S>J`XuYnj?{)_U^B&gT>cc%?i(g z?Jvq+6$d@4d>>PT5xiBR-vAeGIkFvwr2#^y^3v-|W-NqD)5?3HETBLto0oP1Ptdi- zu4rRfIMD5rw=N)JXT#&3Ll_k@=r62qG{q+qQ7p^F!XaT=Tt4b161h_y#pt%}* zavow&O?IE2&i|~q`SIZ3@aTL!ZJaadNIw+VIiP5#)fnH{#BNg!zyV*-2ex?p$%W>< zD#%Z#gS*Fi6qZ?Z=HlXAc3ejP9tzN(8!k0R-fH%ledbr|hA-@kDQ2o^s7Ho}zX`BJ zVq=LTMd~FlA2EV6+L0Lg>()@S(h*FAkfXdZ`7%x@=sTr%090>k+rQE2X!AWUYn!`3 zf-Az_$Ne?u8-M-!Cq~jbfPi(=OW=?j$B6d18-X#$xBgW5$iA$Sh5&|V#{TljIq;73 zFxr8yF13`gA3XYt>i{bQm@a@hUewmw*HeZ4&5bj!`f7FT-+>OZvYm~*qIfgP8L^zoxOM7;Wrf61}K+wckk8;8GNVEEvpt+Jd|zcU!6Z0=_!|1azC)t zMMwEhrZwgLvzZrQlT<>&=O9yU`<#ZMQtC7y^})Fb6zdKL)#Jq|R9)Z6aJTXHpT92y zU1N7Lx_1Bd-m4 zTUwq2p;0o>GHD~^KVt0Hda<-TjS5BwMaw`fjF0+6xPh46|LEs`VmyKaqJ!2#sL!?J zK*%ru2ss-ZhKk08qh$Ub6(k&kM!a-)`j39jUI0-tP?)KOxsk;Yn2BBDk2nw_|BrrL zgRi4xjBIW5N^Iu9PwxNt$?d$oOki**3fwv*3=+S04>}C AUjP6A literal 0 HcmV?d00001 diff --git a/homepage/public/favicon_io/ms-icon-70x70.png b/homepage/public/favicon_io/ms-icon-70x70.png new file mode 100644 index 0000000000000000000000000000000000000000..238c63bd411d744c1932cc5846537f4a2bd493a5 GIT binary patch literal 2592 zcmbW23pCXG7RUcyV{%i{gD5eE5c6gj4hEAM8HR?&+sv35BV#;fM9Cv1<5Av?M2v~* zoTG?NFVsPFRTLdDA}JM99;qD8;ZAqmwQl#Ub=O_%uHX9o_WJGbXYb#0tu3N>xoc|Z zX#fDANg}%WD(v2G9Sl;8aj;j%6-JeVC*uL2@$}#RpsOk7hD@R_82}EO0zkS#Uskx% z-vNLS0RYqC0Duz%fKKeWTRsj70mRtn?gp%VYt^mw#R`wQfJ7#!zXxe*thX;X_mQjc z^pM=})TEIQXZP{-hqgQSRc!?VzS04VD-Vb6rU^J+xByJx*|zHF8AOd{Ab~);HSH9G*>qxJIO8Q7lE2P;$0$+T{}1&mI}m z*H$ozHdk+hZg|1>9ako*R)dT?pMHWSa71-eT8!q_(7c7E&PJR(^~jkQpN~8bQ87~W zJ*IkG@+Iw#+pP_fwFXd!C#=f2bCd<{r_HZdZ3oiU z5%A!QJt12N^pu$L^5WTQ&|+cscG3ZqRq^T7KinVctU=G@Nq~l##mXC@AB%U00eG=B-p=ALnZ?-jGh>o)mz5Av^VJF1EtI z<`yySXk~UiJ8CYLVA~*P&zV%&B`$T**e4%9Hhv7VYFZXlIvxG8)sS?mD?nV%aQwlG z;)maq88aAl2(MXG36_{?fYn5~yz7@ze(}IqpO$REF4p8GFU96>j2V+0Jb@sSDBiDV zpf{~H&+dZ`&TP`?GA-kMjVTDXw`ot}ln0~oXK=(|d6UK$;n^UJU{hb1Wwo5j%{lyM4A?*v;-) z-(qpIq1S(69j~_QLwf@PZJ#;J+dnRo(4JSnKt9;{=vu7YR>>+`>)7t`hGMUJqBpdM zeNB45yMHkCO;M58kg`=LZ2`>4M!&9M=W!E%pPN<}@624Nay8VIJ{zqKgcW&uL8kqx zbcV`%r@$u#RKKo9vcc$D$qD9egeA!#kj=0>WuWmis%7}+kA=DwF9+Q~MuQ#Zd;R>1 z9+*_h?Kdc$Z;MXrjWu3TTe@Q-0~yV_RvQM9r)_vT#nC{(xvCnd72jCd9%HZ z_jyOgXuki+<+ovm0nCJJ&b^Uw3$Gv4 zoPxXRsLW02JH4D3(a-?pNGSYuRa^C&1IdsHt@A0%*lh_u$K{M>Jww%d&c{8l&KE|U zJw#fjzW#U*Hiu((bb0Y=he4Y-#j&q^|CMXYpE*Qx-Q28oYSxem)lX=;bVi#JvcvtJ zaHpmFh323OV^>LeWW zLLdxKk84BDR2XRu`cStH#U(X`O1ROAZ&we!RzRiF7{yddfq*^LJKCAqEFntg~xsYVuk z{m69UZCaUHI!~6lf_w3?y4BTq>RzV$XzQWVEiKk(ADIGaH;-0){w&vMMoqO77##ZGC#$NhKGl1C`+eO z9KA7mYSn?4uHFu+^Z(Juq7)R+bU@aDAp>V0f##FWv9IBU{EhD(WsH2V>F=vbEmJ&{ zXRkvr0~UP4*|d0Kp>&U2E?~sS zLoAdEJnE9ZL>EW3c+@_DYKzuap?{KG4!tFK|Fk!T3dZ+F`j~C&@nq8i10h=A>XQQ0 z{_T)L@Io>A%V{p9HPgwfJlKLHUS5Rb9r}(Ns)>t$l^<9zz+4x(RuKVK5S=0>v=M~Cxb1krpBoJ~*UGWjtH@PA)991+1pu-O + + + + + + + + Creating a New Theme | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + + +
    +
    +

    Creating a New Theme

    + +
    + +
    + + + + + + +
    + Table of contents + +
    + + + + + +

    + 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.

    + +
    + + + + + · 34 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/diagrams/index.html b/homepage/public/gedanken/diagrams/index.html new file mode 100644 index 0000000..f6baa3b --- /dev/null +++ b/homepage/public/gedanken/diagrams/index.html @@ -0,0 +1,3132 @@ + + + + + + + + + Hugo Diagrams | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    Hugo Diagrams

    + +
    + +
    + + + + + + +
    + Table of contents + +
    + + + +

    Hugo version >= 0.93.0

    + + +

    + GoAT Diagrams (Ascii) +

    +

    Hugo! supports GoAT natively. This means that this code block:

    +
    ```goat
    +      .               .                .               .--- 1          .-- 1     / 1
    +     / \              |                |           .---+            .-+         +
    +    /   \         .---+---.         .--+--.        |   '--- 2      |   '-- 2   / \ 2
    +   +     +        |       |        |       |    ---+            ---+          +
    +  / \   / \     .-+-.   .-+-.     .+.     .+.      |   .--- 3      |   .-- 3   \ / 3
    + /   \ /   \    |   |   |   |    |   |   |   |     '---+            '-+         +
    + 1   2 3   4    1   2   3   4    1   2   3   4         '--- 4          '-- 4     \ 4
    +
    +```
    +

    Will be rendered as:

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +2 +3 +4 +1 +2 +3 +4 +1 +2 +3 +4 +1 +2 +3 +4 +1 +2 +3 +4 +1 +2 +3 +4 + + + + +
    + + +

    + GoAT Diagrams Examples +

    + + +

    + Graphics +

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +1 +5 +0 +4 +2 +6 +3 +7 ++ +z ++ +y ++ +x +v +1 +v +P +0 +X +v +3 +E +y +v +e +2 +R +e +f +r +a +c +t +i +o +n +R +e +f +l +e +c +t +i +o +n + + + + +
    + + +

    + Complex +

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +& +A +M +S +i +o +i +q +f +b +B +x +u +j +o +e +a +( +- +x +d +r +a +> +e +f +R +> +c +o +C +n +u +o +b +( +n +r +) +) +d +n +e +e +J +d +r +o +s +i +n +N +o +R +D +t +o +i +u +a +a +n +g +d +d +l +o +i +t +n +e +D +i +a +g +o +n +a +l +s +C +V +u +e +r +r +v +t +e +i +d +c +a +l +n +o +t +A +N +C +: +o +u +l +d +r +r +i +A +a +/ +I +v +n +s +i +n +e +e +h +s +t +d +- +e +- +t +r +l +B +i +h +i +i +s +i +o +n +' +s +r +e +q +n +. +u +* +o +o +b +t +t +o +e +l +a +s +d +' +* +l +i +n +e +D +o +n +S +e +e +? +a +r +c +3 +h + + + + +
    + + +

    + Process +

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +P +S +I +R +T +N +O +A +P +C +R +U +E +T +T +S +S +E +N +D +A +C +P +H +R +O +O +I +C +C +E +E +S +S +B +C +P +O +R +M +O +X +P +C +L +E +E +S +X +S +P +R +E +P +A +R +A +T +I +O +N +X + + + + +
    + + +

    + File tree +

    +

    Created from https://arthursonzogni.com/Diagon/#Tree

    + + + +
    + + + + + + +L +i +n +u +x + + + + + + + + + + + + + +A +D +C +F +n +e +e +e +d +b +n +d +r +i +t +o +o +a +o +r +i +n +s +a +d + + + + + + + + +U +M +b +i +u +n +n +t +t +u + + + + + + + + + +L +K +X +X +u +u +u +u +b +b +b +b +u +u +u +u +n +n +n +n +t +t +t +t +u +u +u +u + + + + +
    + + +

    + Sequence Diagram +

    +

    https://arthursonzogni.com/Diagon/#Sequence

    + + + +
    + + + + + + + + + + +A + + +A + + +l + + +l + + +i + + + + + + + + +i + + +c + + +H +< + +c + + +e + +H + +e + + +e + + + + +e + +l + + + + +l + +l + +l + +o + +o + + + +A + +B + +l + +o + +i + +b + +c + + + + +! + +e + + + + + +B + +> +! + + +B + + +o + + + + + + + + +o + + +b + + +b + + + + + + + + + + + +
    + + +

    + Flowchart +

    +

    https://arthursonzogni.com/Diagon/#Flowchart

    + + + +
    + + + + + + + + + + + + + + + + + + +O +L +_ + + +D +F +_ +K +I +_ +B +O +_ +O +L +_ +A +N +_ +U +N +_ +O +_ +Y +E +_ +T +E +_ + + + +Y +W +_ +, +_ +S +_ + +I + +O +_ +L +_ +Y +_ + + + + + +U +C +_ +Y +A +_ +O +L +_ + +L + + +H + +H +_ +O +B +_ +U +A +_ + +I + + +A + +U +A +_ +_ +U +E +_ +_ +B +_ + +S + + +T + +N +R +_ + + +L +_ + + +S +E +_ + + +T + + +E + +D +T +_ +n +_ +S +E +_ +n +_ +E +L +_ +n + +E + + + +E +S +_ +o +_ +E +D +_ +o +_ +E +E +_ +o + +N + + +Y + +R +? +_ +_ +E +_ +_ +D +_ + +. + + +O + +S +_ +_ +' +_ +_ +T +_ + + + + +U + +T +_ +_ +T +Y +_ +_ +H +' +_ + + + +A +_ +_ +H +E +_ +_ +E +N +_ +N +_ +_ +E +S +_ +_ +O +_ +D +_ +_ +' +_ +_ +' +_ + + +_ +? +_ +_ +? +_ + + + + + + +_ +y + + + + +_ +e +_ +y +_ +y +_ +s +_ +e +_ +e +_ +_ +s +_ +s +_ +_ + + + +_ +_ + +W + +_ +_ + +A + +_ +_ + +I + +_ +_ + +T + +_ +_ + +, + +_ +_ + + +_ +_ + +W + +_ +_ + +H + +_ +_ + +A + +_ +_ + +T + +_ +_ + +? + +_ +_ + + + +_ + + +_ + + + + +_ +T +_ + + +_ +H +_ +B +F +_ +_ +E +_ +U +O +_ +_ +_ +T +L +_ +_ +A +O +_ +L +_ +_ +N +N +_ +Y +O +_ +_ +D +E +_ +O +W +_ +_ +S +_ +U +E +_ +_ +Y +_ +D +_ +_ +O +L +_ +_ +J +_ +_ +U +A +_ + + +U +T +_ + + + +_ +B +_ +n +_ +S +H +_ +n + + + + + +_ +C +E +_ +o +_ +T +E +_ +o + + +( +A + +_ +A +L +_ +_ +M +_ + + +T + + + + +_ +N +E +_ +_ +_ + + +H +Q + + +S + +_ +D +_ +_ +T +_ + + +A +U + + +C + +_ +S +_ +_ +W +_ + + +T +E + + +R + +_ +E +' +_ +_ +I +_ + + +S + + +E + +_ +E +N +_ +_ +C +_ + + +W +T + + +W + + +_ +O +_ +_ +E +_ + + +A +I + + + + +_ +' +_ +_ +? +_ + + +S +O + + +I + + + + + + +_ +? +_ + + + + +N +N + + +T + + + +H +I + +_ + + + + + + +' +) + + + + + + + + + +E +N + +_ + + +_ +y + + +T + + + +L + + +Y +S + +_ +_ +y +_ +e + + + + + + + + + +E + + +, +T + +_ +_ +e +_ +s + + + + +T + + +A + +_ +_ +s + + + + + + + + +' + + +I +L + +_ + + + + + + +S + + +L + +_ + +G + + + + + + +S +I + +_ + +O + + + + +G + + +H +N + +_ + +O + + + + + + + + + + + + + + + + + + + + + +O + + +O +G + +_ + +D + + + + + +U + +_ + + + + + +D + + +L +F + + + + + + +R + + +D +R + + +G + + + +I + + +E + + +O + + + +N + + +T +E + + +O + + + + + + + + + + + + + + + + + + + + + + + + + + + + +G + + +R +B + + +D + + + + + +Y +S + + +! + + +D + + + + + +! + + + + + + + + + +
    + + +

    + Table +

    +

    https://arthursonzogni.com/Diagon/#Table

    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +S + +P + +E + +T + +F + + + + + +I + +L + + + +Y + +R + +X + +E + +A + + + + + +D + +I + + + +N + +O + +P + +R + +C + + + + + +E + +T + + + +T + +D + +R + +M + +T + + + + + +N + +E + + + +A + +U + +E + + +O + + + + + +T + +R + + + +X + +C + +S + + +R + + + + + +I + +A + + + + +T + +S + + + + + + + +F + +L + + + + +I + +I + + + + + + + +I + + + + + +O + +O + + + + + + + +E + + + + + +N + +N + + + + + + + +R + + + + +: + +: + +: + +: + +: + +| + +| + +| + +| + +: + +: + + + + + + + + + + + + + + + + +{ + +I + +T + +F + +I + +L + +" + +" + +" + +l + +" + + + + +D + +E + +A + +D + +I + +[ + +( + +{ + +e + +" + + + +P + +E + +R + +C + +E + +T + +" + +" + +" + +t + +" + + + +R + +N + +M + +T + +N + +E + + + + +t + +" + + + +O + +T + + +O + +T + +R + +E + +E + +E + +e + + + + +D + +I + +{ + +R + +I + +A + +X + +X + +X + +r + +c + + + +U + +F + + + +F + +L + +P + +P + +P + + +h + + + +C + +I + +" + +{ + +I + + +R + +R + +R + +{ + +a + + + +T + +E + +| + + +E + + +E + +E + +E + + +r + + + +I + +R + +" + +F + +R + + +S + +S + +S + +l + +a + + + +O + + + +A + + + +S + +S + +S + +e + +c + + + +N + +" + +T + +C + + + +I + +I + +I + +t + +t + + + + += + +E + +T + + + +O + +O + +O + +t + +e + + + +} + +" + +R + +O + + + +N + +N + +N + +e + +r + + + + + +M + +R + + + + + + +r + + + + +. + +E + + + + + +" + +" + +" + + +{ + + + + +X + +} + +} + + + +] + +) + +} + +} + + + + + +P + + + + + +" + +" + +" + + +c + + + + +R + +. + +. + + + + + + +. + +h + + + + +E + + + + + + + +. + + +a + + + + +S + + + + + + + + + +r + + + + +S + + + + + + + + + +a + + + + +I + + + + + + + + + +c + + + + +O + + + + + + + + + +t + + + + +N + + + + + + + + + +e + + + + + + + + + + + + + +r + + + + +" + + + + + + + + + + + + + +. + + + + + + + + + +} + + + + +" + + + + + + + + + + + + + + + + + + + + + + +" + + + + +. + + + + + + + + + +" + + + + + + + + + + + + + +" + + + + + + + + + + + + + +" + + + + + + + + + + + + + + + + + + + + + + + + + + +. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + · 12 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/hugoisforlovers/index.html b/homepage/public/gedanken/hugoisforlovers/index.html new file mode 100644 index 0000000..b23d787 --- /dev/null +++ b/homepage/public/gedanken/hugoisforlovers/index.html @@ -0,0 +1,221 @@ + + + + + + + + + Getting Started with Hugo | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    Getting Started with Hugo

    + +
    + +
    + + + + + + +
    + Table of contents + +
    + + + + + +

    + 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](http://github.com/spf13/hugo)
    +2. Go into the repo
    +3. Run hugo in server mode and build the docs
    +4. Open your browser to http://localhost:1313
    +

    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.

    + +
    + + + + + · 2 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/index.html b/homepage/public/gedanken/index.html new file mode 100644 index 0000000..24e3fdc --- /dev/null +++ b/homepage/public/gedanken/index.html @@ -0,0 +1,129 @@ + + + + + + + + + Gedanken | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    Gedanken

    + +
    + +
    +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/index.xml b/homepage/public/gedanken/index.xml new file mode 100644 index 0000000..1049ff2 --- /dev/null +++ b/homepage/public/gedanken/index.xml @@ -0,0 +1,56 @@ + + + + Gedanken on Thomas Internet Garden + http://localhost:1313/gedanken/ + Recent content in Gedanken on Thomas Internet Garden + Hugo + en-us + Thomas.Sindt@gmx.de (Thomas) + Thomas.Sindt@gmx.de (Thomas) + Mon, 18 May 2026 23:03:26 +0200 + + + My First Post + http://localhost:1313/gedanken/my-first-post/ + Mon, 18 May 2026 23:03:26 +0200Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/my-first-post/ + <h2 id="introduction"> introduction </h2> <p>This is <strong>bold</strong> text, and this is <em>emphasized</em> text.</p> <p>Visit the <a href="https://gohugo.io">Hugo</a> website!</p> + + + Getting Started with Hugo + http://localhost:1313/gedanken/hugoisforlovers/ + Wed, 26 Oct 2022 17:12:11 +0700Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/hugoisforlovers/ + <h2 id="step-1-install-hugo"> Step 1. Install Hugo </h2> <p>Go to <a href="https://github.com/spf13/hugo/releases">Hugo releases</a> and download the appropriate version for your OS and architecture.</p> <p>Save it somewhere specific as we will be using it in the next step.</p> <p>More complete instructions are available at <a href="https://gohugo.io/getting-started/installing/">Install Hugo</a></p> <h2 id="step-2-build-the-docs"> Step 2. Build the Docs </h2> <p>Hugo has its own example site which happens to also be the documentation site you are reading right now.</p> <p>Follow the following steps:</p> + + + Hugo Diagrams + http://localhost:1313/gedanken/diagrams/ + Tue, 25 Oct 2022 17:12:11 +0700Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/diagrams/ + <p>Hugo version &gt;= 0.93.0</p> <h2 id="goat-diagrams-ascii"> GoAT Diagrams (Ascii) </h2> <p>Hugo! supports <a href="https://github.com/bep/goat">GoAT</a> natively. This means that this code block:</p> <div class="highlight"><pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-fallback" data-lang="fallback"><span style="display:flex;"><span>```goat </span></span><span style="display:flex;"><span> . . . .--- 1 .-- 1 / 1 </span></span><span style="display:flex;"><span> / \ | | .---+ .-+ + </span></span><span style="display:flex;"><span> / \ .---+---. .--+--. | &#39;--- 2 | &#39;-- 2 / \ 2 </span></span><span style="display:flex;"><span> + + | | | | ---+ ---+ + </span></span><span style="display:flex;"><span> / \ / \ .-+-. .-+-. .+. .+. | .--- 3 | .-- 3 \ / 3 </span></span><span style="display:flex;"><span> / \ / \ | | | | | | | | &#39;---+ &#39;-+ + </span></span><span style="display:flex;"><span> 1 2 3 4 1 2 3 4 1 2 3 4 &#39;--- 4 &#39;-- 4 \ 4 </span></span><span style="display:flex;"><span> </span></span><span style="display:flex;"><span>``` </span></span></code></pre></div><p>Will be rendered as:</p> + + + Introduce Hugo + http://localhost:1313/gedanken/introduce-hugo/ + Thu, 20 Oct 2022 17:12:11 +0700Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/introduce-hugo/ + <h2 id="introduction"> Introduction </h2> <p>This tutorial will show you how to create a simple theme in <a href="https://github.com/gohugoio/hugo">Hugo</a>. 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.</p> <p>We&rsquo;ll start with creating a new site with a very basic template. Then we&rsquo;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.</p> + + + Creating a New Theme + http://localhost:1313/gedanken/creating-a-new-theme/ + Fri, 22 Oct 2021 17:12:11 +0700Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/creating-a-new-theme/ + <h2 id="introduction"> Introduction </h2> <p>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.</p> <p>We&rsquo;ll start with creating a new site with a very basic template. Then we&rsquo;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.</p> + + + Migrate to Hugo from Jekyll + http://localhost:1313/gedanken/migrate-from-jekyll/ + Fri, 22 Oct 2021 17:12:11 +0700Thomas.Sindt@gmx.de (Thomas) + http://localhost:1313/gedanken/migrate-from-jekyll/ + <h2 id="move-static-content-to-static"> Move static content to <code>static</code> </h2> <p>Jekyll has a rule that any directory not starting with <code>_</code> will be copied as-is to the <code>_site</code> output. Hugo keeps all static content under <code>static</code>. You should therefore move it all there. With Jekyll, something that looked like</p> <div class="highlight"><pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span>▾ &lt;root&gt;/ </span></span><span style="display:flex;"><span> ▾ images/ </span></span><span style="display:flex;"><span> logo.png </span></span></code></pre></div><p>should become</p> <div class="highlight"><pre tabindex="0" style="background-color:#fff;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"><code class="language-shell" data-lang="shell"><span style="display:flex;"><span>▾ &lt;root&gt;/ </span></span><span style="display:flex;"><span> ▾ static/ </span></span><span style="display:flex;"><span> ▾ images/ </span></span><span style="display:flex;"><span> logo.png </span></span></code></pre></div><p>Additionally, you&rsquo;ll want any files that should reside at the root (such as <code>CNAME</code>) to be moved to <code>static</code>.</p> + + + diff --git a/homepage/public/gedanken/introduce-hugo/index.html b/homepage/public/gedanken/introduce-hugo/index.html new file mode 100644 index 0000000..7d2f7ff --- /dev/null +++ b/homepage/public/gedanken/introduce-hugo/index.html @@ -0,0 +1,1229 @@ + + + + + + + + + Introduce Hugo | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    Introduce Hugo

    + +
    + +
    + + + + + + +
    + Table of contents + +
    + + + + + +

    + 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.

    + +
    + + + + + · 34 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/migrate-from-jekyll/index.html b/homepage/public/gedanken/migrate-from-jekyll/index.html new file mode 100644 index 0000000..db7dc8e --- /dev/null +++ b/homepage/public/gedanken/migrate-from-jekyll/index.html @@ -0,0 +1,343 @@ + + + + + + + + + Migrate to Hugo from Jekyll | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    Migrate to Hugo from Jekyll

    + +
    + +
    + + + + + + +
    + Table of contents + +
    + + + + + +

    + 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).
    2. +
    +
    git submodule deinit _site
    +git rm _site
    +git submodule add -b gh-pages git@github.com:your-username/your-repo.git public
    +
      +
    1. Or, change the Hugo configuration to use _site instead of public.
    2. +
    +
    {
    +    ..
    +    "publishdir": "_site",
    +    ..
    +}
    +
    + +

    + 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.

    + +
    + + + + + · 4 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/gedanken/my-first-post/index.html b/homepage/public/gedanken/my-first-post/index.html new file mode 100644 index 0000000..54a508b --- /dev/null +++ b/homepage/public/gedanken/my-first-post/index.html @@ -0,0 +1,162 @@ + + + + + + + + + My First Post | Thomas Internet Garden + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +
    +

    My First Post

    + + + + + + + +
    + Table of contents + +
    + + + + + +

    + introduction +

    +

    This is bold text, and this is emphasized text.

    +

    Visit the Hugo website!

    + +
    + + + + + · 1 min read + + + +
    + + + +
    + +
    + + + +
    +
    + + ../ + +
    +
    + +
    +

    + © Copyright 2026 · + Thomas +

    +
    + + diff --git a/homepage/public/index.html b/homepage/public/index.html index 3140b48..1acde63 100644 --- a/homepage/public/index.html +++ b/homepage/public/index.html @@ -1,114 +1,108 @@ - - + + - - - - My New Hugo Project - - - - - - - - - - - - + + + + + + + Thomas Internet Garden + + + - - + - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + +
    -
    -

    - My New Hugo Project -

    - -
    - -
    -
    - + - - - - - - - - -
    -