From 50ec65fbe1a48475d3320775dab2c47389c02114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 31 Jul 2017 09:21:24 +0200 Subject: [PATCH] Squashed 'docs/' changes from 73f355ce..ef02e34e ef02e34e Correct the mmark example frontmatter parameter 6e91e900 SectionPagesMenu > sectionPagesMenu 1a0db1a6 Adjust sectionPagesMenu f9f87d9d Fix extension's missing period. 7062ae07 Remove Press and Articles page 771f2b38 Remove outdated and redudant content file for release notes 64cf47c3 Remove outdated note in docs contribution guide bdb11b89 Fix typo 8324af70 Fixes broken link on Roadmap d93f0992 functions: Add all missing binary comparison operators fb7ae80a Fix typo in usage.md fbdae08b Fix typo in content-management/taxonomies.md 66fab8d2 Make less stuttery b3cd4c22 Remove old temp release notes 5589ba96 Fix typos in templates/lists.md af3a0807 http > HTTP b2af90ae Remove formatting in description of blog article 6e2e60a9 Add blog article about Netlify files 0bb6f2f2 Use title in archetype file 7b2490ff Get the Archetypes up to new spec f401d69b Load CSS and JS via HTTP/2 server push 4aef4944 Adjust titles 362acdb2 Fix typo in quickstart c2440560 Remove inline icons from installation guide d2edcbc3 Revert "Fix links to Disqus template documentation" 622f49cf Add a full commands section at the quick start end 752f065b Fix server command in README 93e08e19 Fix links to Disqus template documentation 5e0cfaa9 Adjust Linux install d51397c2 Fix broken link in Quick Start 1fb39846 Add /quickstart alias to quickstart 7440616b Add new and simpler quickstart b3ec6986 Let page title correspond to function name replaceRE b44499c9 Add YouTube tutorial about taxonomies 88b9eb0e Add RSS templates example 6c0bde3f Update slice.md 6c212ea6 Reorder to match the following content order d2122992 Complete "content" spelling under theme components e4824eb3 Fix the output shortcode and its usage 0adfc945 Add archetypes YouTube video 638e9d9b Fix double "your" typo in taxonomies.md git-subtree-dir: docs git-subtree-split: ef02e34eaf296c3f94b4446b3c3347771e786057 --- README.md | 4 +- archetypes/default.md | 10 +- archetypes/functions.md | 17 - archetypes/showcase.md | 13 - archetypes/tutorials.md | 16 - config.toml | 10 +- content/_index.md | 2 +- content/about/roadmap.md | 2 +- content/content-management/archetypes.md | 20 +- content/content-management/formats.md | 2 +- content/content-management/multilingual.md | 2 +- content/content-management/shortcodes.md | 42 +- content/content-management/taxonomies.md | 6 +- content/contribute/documentation.md | 42 +- content/functions/base64.md | 6 +- content/functions/default.md | 6 +- content/functions/delimit.md | 12 +- content/functions/eq.md | 2 +- content/functions/ge.md | 25 + content/functions/gt.md | 25 + content/functions/le.md | 25 + content/functions/lt.md | 25 + content/functions/ne.md | 25 + content/functions/replacere.md | 2 +- content/functions/safeURL.md | 12 +- content/functions/shuffle.md | 6 +- content/functions/slice.md | 2 +- content/functions/urlize.md | 6 +- content/getting-started/installing.md | 43 +- content/getting-started/quick-start.md | 540 ++---------- content/getting-started/usage.md | 2 +- content/news/http2-server-push-in-hugo.md | 79 ++ content/news/press-and-articles.md | 28 - content/news/release-notes.md | 981 --------------------- content/templates/data-templates.md | 4 +- content/templates/lists.md | 4 +- content/templates/menu-templates.md | 4 +- content/templates/taxonomy-templates.md | 2 +- content/themes/creating.md | 2 +- content/tools/syntax-highlighting.md | 6 +- content/variables/page.md | 6 +- data/docs.json | 10 + layouts/shortcodes/articlelist.html | 18 - layouts/shortcodes/asciicast.html | 2 + layouts/shortcodes/output.html | 5 +- static/_headers | 5 - static/images/blog/hugo-http2-push.png | Bin 0 -> 20544 bytes static/images/gohugoio-card-1.png | Bin 0 -> 73881 bytes temp/0.22.1-relnotes.md | 34 - themes/gohugoioTheme | 2 +- 50 files changed, 390 insertions(+), 1754 deletions(-) delete mode 100644 archetypes/functions.md delete mode 100644 archetypes/showcase.md delete mode 100644 archetypes/tutorials.md create mode 100644 content/functions/ge.md create mode 100644 content/functions/gt.md create mode 100644 content/functions/le.md create mode 100644 content/functions/lt.md create mode 100644 content/functions/ne.md create mode 100644 content/news/http2-server-push-in-hugo.md delete mode 100644 content/news/press-and-articles.md delete mode 100644 content/news/release-notes.md delete mode 100644 layouts/shortcodes/articlelist.html create mode 100644 layouts/shortcodes/asciicast.html delete mode 100644 static/_headers create mode 100644 static/images/blog/hugo-http2-push.png create mode 100644 static/images/gohugoio-card-1.png delete mode 100644 temp/0.22.1-relnotes.md diff --git a/README.md b/README.md index eba081c96..c482ff630 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,10 @@ git submodule update --init Also note that the documentation version for a given version of Hugo can also be found in the `/docs` sub-folder of the [Hugo source repository](https://github.com/gohugoio/hugo). Then to view the docs in your browser, run Hugo and open up the link: + ```bash -hugo serve +▶ hugo server + Started building sites ... . . diff --git a/archetypes/default.md b/archetypes/default.md index e325a7d99..0b7f8fdbf 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -1,13 +1,11 @@ --- -linktitle: "" +title: "{{ replace .TranslationBaseName "-" " " | title }}" +date: {{ .Date }} description: "" -godocref: "" -publishdate: "" -lastmod: "" categories: [] -tags: [] -weight: 00 +#tags: [] slug: "" aliases: [] toc: false +draft: true --- diff --git a/archetypes/functions.md b/archetypes/functions.md deleted file mode 100644 index 0a5dd344f..000000000 --- a/archetypes/functions.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -linktitle: "" -description: "" -godocref: "" -publishdate: "" -lastmod: "" -categories: [functions] -tags: [] -ns: "" -signature: [] -workson: [] -hugoversion: "" -aliases: [] -relatedfuncs: [] -toc: false -deprecated: false ---- \ No newline at end of file diff --git a/archetypes/showcase.md b/archetypes/showcase.md deleted file mode 100644 index 562fb9e8e..000000000 --- a/archetypes/showcase.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -description: "" -lastmod: "" -license: "" -licenseLink: "" -sitelink: "" -sourcelink: "" -categories: [showcase] -tags: [] -image: "" -toc: false -notesforauthors: "Go to gohugo.io/contribute/documentation for more info" ---- \ No newline at end of file diff --git a/archetypes/tutorials.md b/archetypes/tutorials.md deleted file mode 100644 index 0a3540c0f..000000000 --- a/archetypes/tutorials.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -linktitle: "" -description: "" -godocref: "" -publishdate: "" -lastmod: "" -categories: [tutorials] -tags: [] -author: "" -authorurl: "" -originalurl: "" -draft: false -aliases: [] -notesforauthors: "Go to gohugo.io/contribute/documentation for more info." ---- - diff --git a/config.toml b/config.toml index 08c72176f..61df5b873 100644 --- a/config.toml +++ b/config.toml @@ -6,7 +6,7 @@ enableEmoji = true footnotereturnlinkcontents = "↩" languageCode = "en-us" metaDataFormat = "yaml" -title = "Hugo: A Fast and Flexible Website Generator" +title = "Hugo" theme = "gohugoioTheme" googleAnalytics = "UA-7131036-4" @@ -25,7 +25,7 @@ pygmentsCodeFences = true pygmentsStyle = "friendly" [outputs] -home = [ "HTML", "RSS", "REDIR" ] +home = [ "HTML", "RSS", "REDIR", "HEADERS" ] section = [ "HTML", "RSS"] [mediaTypes] @@ -39,7 +39,11 @@ mediatype = "text/netlify" baseName = "_redirects" isPlainText = true notAlternative = true - +[outputFormats.HEADERS] +mediatype = "text/netlify" +baseName = "_headers" +isPlainText = true +notAlternative = true [social] twitter = "GoHugoIO" diff --git a/content/_index.md b/content/_index.md index 3f9ad64a4..ec8883c44 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,5 @@ --- -title: "Hugo: A Fast and Flexible Website Generator" +title: "A Fast and Flexible Website Generator" date: 2017-03-02T12:00:00-05:00 features: - heading: Blistering Speed diff --git a/content/about/roadmap.md b/content/about/roadmap.md index 0bc0b02aa..b69126a89 100644 --- a/content/about/roadmap.md +++ b/content/about/roadmap.md @@ -44,7 +44,7 @@ Feel free to [contribute to Hugo's development][devcontribute], [improve Hugo's [migrate]: /tools/migrations/ [milestones]: https://github.com/gohugoio/hugo/milestone/14 [newissue]: https://github.com/gohugoio/hugo/issues/ -[related forum thread]: https://disourse.gohugo.io/t/web-based-editor/155 +[related forum thread]: https://discourse.gohugo.io/t/web-based-editor/155 [themes]: /themes/ [themescontrib]: /contribute/themes/ [tutorials]: /tutorials diff --git a/content/content-management/archetypes.md b/content/content-management/archetypes.md index 9fc58139b..235de4ff2 100644 --- a/content/content-management/archetypes.md +++ b/content/content-management/archetypes.md @@ -29,6 +29,8 @@ See above **Archetypes** are content files in the [archetypes directory][] of your project that contain preconfigured [front matter][] for your website's [content types][]. Archetypes facilitate consistent metadata across your website content and allow content authors to quickly generate instances of a content type via the `hugo new` command. +{{< youtube S3Tj3UcTFz8 >}} + The `hugo new` generator for archetypes assumes your working directory is the content folder at the root of your project. Hugo is able to infer the appropriate archetype by assuming the content type from the content section passed to the CLI command: ``` @@ -47,15 +49,13 @@ To override the content type Hugo infers from `[content-section]`, add the `--ki Running this command in a new site that does not have default or custom archetypes will create the following file: -{{% output file="content/posts/my-first-post.md" %}} -``` +{{< output file="content/posts/my-first-post.md" >}} +++ date = "2017-02-01T19:20:04-07:00" title = "my first post" draft = true +++ -``` -{{% /output %}} +{{< /output >}} {{% note %}} In this example, if you do not already have a `content/posts` directory, Hugo will create both `content/posts/` and `content/posts/my-first-post.md` for you. @@ -119,16 +119,14 @@ $ hugo new posts/my-new-post.md Hugo then creates a new markdown file with the following front matter: -{{% output file="content/posts/my-new-post.md" %}} -``` +{{< output file="content/posts/my-new-post.md" >}} +++ categories = ["web development"] date = "2017-02-01T19:20:04-07:00" tags = ["golang", "hugo"] title = "my new post" +++ -``` -{{% /output %}} +{{< /output >}} We see that the `title` and `date` key-values have been added in addition to the `tags` and `categories` key-values from `archetypes/default.md`. @@ -160,8 +158,7 @@ $ hugo new posts/post-from-custom.md This time, Hugo recognizes our custom `archetypes/posts.md` archetype and uses it instead of `archetypes/default.md`. The generated file will now include the full list of front matter parameters, as well as the base archetype's `title` and `date`: -{{% output file="content/posts/post-from-custom-archetype.md" %}} -``` +{{< output file="content/posts/post-from-custom-archetype.md" >}} +++ categories = "" date = 2017-02-13T17:24:43-08:00 @@ -169,8 +166,7 @@ description = "" tags = "" title = "post from custom archetype" +++ -``` -{{% /output %}} +{{< /output >}} ### Hugo Docs Custom Archetype diff --git a/content/content-management/formats.md b/content/content-management/formats.md index be84e7cf4..c2837ffc4 100644 --- a/content/content-management/formats.md +++ b/content/content-management/formats.md @@ -100,7 +100,7 @@ In the event that you want to only use Mmark in specific files, you can also def --- title: My Post date: 2017-04-01 -markdown: mmark +markup: mmark --- ``` diff --git a/content/content-management/multilingual.md b/content/content-management/multilingual.md index e3c65a26d..958634c58 100644 --- a/content/content-management/multilingual.md +++ b/content/content-management/multilingual.md @@ -95,7 +95,7 @@ Translated articles are identified by the name of the content file. 1. `/content/about.en.md` 2. `/content/about.fr.md` -In this eample, the `about.md` will be assigned the configured `defaultContentLanguage`. +In this example, the `about.md` will be assigned the configured `defaultContentLanguage`. 1. `/content/about.md` 2. `/content/about.fr.md` diff --git a/content/content-management/shortcodes.md b/content/content-management/shortcodes.md index 3482d6722..a4424a996 100644 --- a/content/content-management/shortcodes.md +++ b/content/content-management/shortcodes.md @@ -95,16 +95,14 @@ The `figure` shortcode can use the following named parameters: #### Example `figure` Output -{{% output file="figure-output-example.html" %}} -``` +{{< output file="figure-output-example.html" >}} <figure> <img src="/media/spf13.jpg" /> <figcaption> <h4>Steve Francia</h4> </figcaption> </figure> -``` -{{% /output %}} +{{< /output >}} ### `gist` @@ -130,11 +128,9 @@ If the gist contains several files and you want to quote just one of them, you c #### Example `gist` Output -{{% output file="gist-output.html" %}} -``` +{{< output file="gist-output.html" >}} {{< gist spf13 7896402 >}} -``` -{{% /output %}} +{{< /output >}} #### Example `gist` Display @@ -165,8 +161,7 @@ This shortcode will convert the source code provided into syntax-highlighted HTM The `highlight` shortcode example above would produce the following HTML when the site is rendered: -{{% output file="tutorials/learn-html/index.html" %}} -``` +{{< output file="tutorials/learn-html/index.html" >}} <span style="color: #f92672"><section</span> <span style="color: #a6e22e">id=</span><span style="color: #e6db74">"main"</span><span style="color: #f92672">></span> <span style="color: #f92672"><div></span> <span style="color: #f92672"><h1</span> <span style="color: #a6e22e">id=</span><span style="color: #e6db74">"title"</span><span style="color: #f92672">></span>{{ .Title }}<span style="color: #f92672"></h1></span> @@ -175,8 +170,7 @@ The `highlight` shortcode example above would produce the following HTML when th {{ end }} <span style="color: #f92672"></div></span> <span style="color: #f92672"></section></span> -``` -{{% /output %}} +{{< /output >}} {{% note "More on Syntax Highlighting" %}} To see even more options for adding syntax-highlighted code blocks to your website, see [Syntax Highlighting in Developer Tools](/tools/syntax-highlighting/). @@ -206,11 +200,9 @@ You also have the option to hide the caption: By adding the preceding `hidecaption` example, the following HTML will be added to your rendered website's markup: -{{% output file="instagram-hide-caption-output.html" %}} -``` +{{< output file="instagram-hide-caption-output.html" >}} {{< instagram BWNjjyYFxVx hidecaption >}} -``` -{{% /output %}} +{{< /output >}} #### Example `instagram` Display @@ -265,11 +257,9 @@ Extract the value from the field `data-id` and pass it to the shortcode: #### `speakerdeck` Example Output -{{% output file="speakerdeck-example-input.md" %}} -``` +{{< output file="speakerdeck-example-input.md" >}} {{< speakerdeck 4e8126e72d853c0060001f97 >}} -``` -{{% /output %}} +{{< /output >}} #### `speakerdeck` Example Display @@ -297,11 +287,9 @@ Pass the tweet's ID from the URL as a parameter to the `tweet` shortcode: Using the preceding `tweet` example, the following HTML will be added to your rendered website's markup: -{{% output file="example-tweet-output.html" %}} -``` +{{< output file="example-tweet-output.html" >}} {{< tweet 877500564405444608 >}} -``` -{{% /output %}} +{{< /output >}} #### Example `tweet` Display @@ -329,11 +317,9 @@ Extract the ID from the video's URL and pass it to the `vimeo` shortcode: Using the preceding `vimeo` example, the following HTML will be added to your rendered website's markup: -{{% output file="example-vimeo-output.html" %}} -``` +{{< output file="example-vimeo-output.html" >}} {{< vimeo 146022717 >}} -``` -{{% /output %}} +{{< /output >}} {{% tip %}} If you want to further customize the visual styling of the YouTube or Vimeo output, add a `class` named parameter when calling the shortcode. The new `class` will be added to the `<div>` that wraps the `<iframe>` *and* will remove the inline styles. Note that you will need to call the `id` as a named parameter as well. diff --git a/content/content-management/taxonomies.md b/content/content-management/taxonomies.md index fcefa5c80..b2f785056 100644 --- a/content/content-management/taxonomies.md +++ b/content/content-management/taxonomies.md @@ -32,6 +32,8 @@ Term Value : a piece of content assigned to a term +{{< youtube "-np9GX6cL38" >}} + ## Example Taxonomy: Movie Website Let's assume you are making a website about movies. You may want to include the following taxonomies: @@ -92,7 +94,7 @@ disableKinds = ["taxonomy","taxonomyTerm"] ### Default Destinations -When taxonomies are used---and [taxonomy templates][] are provided---Hugo will automatically create both a page listing all the taxonomy's terms and individual pages with lists of content associated with each term. For example, a `categories` taxonomy declared in your your configuration and used in your content front matter will create the following pages: +When taxonomies are used---and [taxonomy templates][] are provided---Hugo will automatically create both a page listing all the taxonomy's terms and individual pages with lists of content associated with each term. For example, a `categories` taxonomy declared in your configuration and used in your content front matter will create the following pages: * A single page at `example.com/categories/` that lists all the [terms within the taxonomy][] * [Individual taxonomy list pages][taxonomy templates] (e.g., `/categories/development/`) for each of the terms that shows a listing of all pages marked as part of that taxonomy within any content file's [front matter][] @@ -163,7 +165,7 @@ project_url = "https://github.com/gohugoio/hugo" title: "Hugo: A fast and flexible static site generator" #tags: ["Development", "Go", "fast", "Blogging"] categories: ["Development"] -categories: ["Go Web Dev"] +series: ["Go Web Dev"] slug: "hugo" project_url: "https://github.com/gohugoio/hugo" --- diff --git a/content/contribute/documentation.md b/content/contribute/documentation.md index c2e06dcaf..80d7ad8d3 100644 --- a/content/contribute/documentation.md +++ b/content/contribute/documentation.md @@ -38,10 +38,6 @@ Adding new content to the Hugo docs follows the same pattern, regardless of the hugo new <DOCS-SECTION>/<new-content-lowercase>.md ``` -{{% note "`title:`, `date:`, and Field Order" %}} -`title` and `date` fields are added automatically when using archetypes via `hugo new`. Do not be worried if the order of the new file's front matter fields on your local machine is different than that of the examples provided in the Hugo docs. This is a known issue [(#452)](https://github.com/gohugoio/hugo/issues/452). -{{% /note %}} - ### Add a New Function Once you have cloned the Hugo repository, you can create a new function via the following command. Keep the file name lowercase. @@ -92,20 +88,6 @@ Here is a review of the front matter fields automatically generated for you usin In the body of your function, expand the short description used in the front matter. Include as many examples as possible, and leverage the Hugo docs [`code` shortcode](#adding-code-blocks). If you are unable to add examples but would like to solicit help from the Hugo community, add `needsexample: true` to your front matter. -### Add a New Tutorial - -Once you have cloned the Hugo repository, you can create a new tutorial via the following command. Name the markdown file accordingly: - -``` -hugo new tutorials/my-new-tutorial.md -``` - -The archetype for the `tutorials` content type is as follows: - -{{< code file="archetypes/tutorials.md" >}} -{{< readfile file="/themes/gohugoioTheme/archetypes/tutorials.md">}} -{{< /code >}} - ## Add Code Blocks Code blocks are crucial for providing examples of Hugo's new features to end users of the Hugo docs. Whenever possible, create examples that you think Hugo users will be able to implement in their own projects. @@ -223,12 +205,10 @@ The `output` shortcode is almost identical to the `code` shortcode but only take The preceding `output` example will render as follows to the Hugo docs: -{{% output file="post/my-first-post/index.html" %}} -``` +{{< output file="post/my-first-post/index.html" >}} <h1>This is my First Hugo Blog Post</h1> <p>I am excited to be using Hugo.</p> -``` -{{% /output %}} --> +{{< /output >}} --> ## Blockquotes @@ -278,13 +258,11 @@ Here is a piece of information I would like to draw your **attention** to. #### Example `note` Output -{{% output file="note-with-heading.html" %}} -``` +{{< output file="note-with-heading.html" >}} {{% note %}} Here is a piece of information I would like to draw your **attention** to. {{% /note %}} -``` -{{% /output %}} +{{< /output >}} #### Example `note` Display @@ -306,13 +284,11 @@ Here's a bit of advice to improve your productivity with Hugo. #### Example `tip` Output -{{% output file="tip-output.html" %}} -``` +{{< output file="tip-output.html" >}} {{% tip %}} Here's a bit of advice to improve your productivity with Hugo. {{% /tip %}} -``` -{{% /output %}} +{{< /output >}} #### Example `tip` Display @@ -334,13 +310,11 @@ This is a warning, which should be reserved for *important* information like bre #### Example `warning` Output -{{% output file="warning-admonition-output.html" %}} -``` +{{< output file="warning-admonition-output.html" >}} {{% warning %}} This is a warning, which should be reserved for *important* information like breaking changes. {{% /warning %}} -``` -{{% /output %}} +{{< /output >}} #### Example `warning` Display diff --git a/content/functions/base64.md b/content/functions/base64.md index 83a10c597..df0874b21 100644 --- a/content/functions/base64.md +++ b/content/functions/base64.md @@ -26,12 +26,10 @@ An example: <p>SGVsbG8gd29ybGQ = {{ "SGVsbG8gd29ybGQ=" | base64Decode }}</p> {{< /code >}} -{{% output file="base-64-output.html" %}} -``` +{{< output file="base-64-output.html" >}} <p>Hello world = SGVsbG8gd29ybGQ=</p> <p>SGVsbG8gd29ybGQ = Hello world</p> -``` -{{% /output %}} +{{< /output >}} You can also pass other data types as arguments to the template function which tries to convert them. The following will convert *42* from an integer to a string because both `base64Encode` and `base64Decode` always return a string. diff --git a/content/functions/default.md b/content/functions/default.md index 873138cff..0edcbf425 100644 --- a/content/functions/default.md +++ b/content/functions/default.md @@ -72,11 +72,9 @@ And then using dot notation Which would return -{{% output file="dot-notation-default-return-value.html" %}} -``` +{{< output file="dot-notation-default-return-value.html" >}} <title>Sane Defaults -``` -{{% /output %}} +{{< /output >}} The following have equivalent return values but are far less terse. This demonstrates the utility of `default`: diff --git a/content/functions/delimit.md b/content/functions/delimit.md index 5573ee208..7bd7f4a6b 100644 --- a/content/functions/delimit.md +++ b/content/functions/delimit.md @@ -44,11 +44,9 @@ title: I love Delimit

Tags: {{ delimit .Params.tags ", " }}

{{< /code >}} -{{% output file="delimit-page-tags-output.html" %}} -``` +{{< output file="delimit-page-tags-output.html" >}}

Tags: tag1, tag2, tag3

-``` -{{% /output %}} +{{< /output >}} Here is the same example but with the optional "last" delimiter: @@ -56,11 +54,9 @@ Here is the same example but with the optional "last" delimiter: Tags: {{ delimit .Params.tags ", " ", and " }} {{< /code >}} -{{% output file="delimit-page-tags-final-and-output.html" %}} -``` +{{< output file="delimit-page-tags-final-and-output.html" >}}

Tags: tag1, tag2, and tag3

-``` -{{% /output %}} +{{< /output >}} [lists]: /templates/lists/ diff --git a/content/functions/eq.md b/content/functions/eq.md index 538e67fcd..579c77368 100644 --- a/content/functions/eq.md +++ b/content/functions/eq.md @@ -1,7 +1,7 @@ --- title: eq linktitle: eq -description: Returns true if the parameters are equal. +description: Returns the boolean truth of arg1 == arg2. godocref: date: 2017-02-01 publishdate: 2017-02-01 diff --git a/content/functions/ge.md b/content/functions/ge.md new file mode 100644 index 000000000..27d5171f9 --- /dev/null +++ b/content/functions/ge.md @@ -0,0 +1,25 @@ +--- +title: ge +linktitle: ge +description: Returns the boolean truth of arg1 >= arg2. +godocref: +date: 2017-07-26 +publishdate: 2017-07-26 +lastmod: 2017-07-26 +categories: [functions] +menu: + docs: + parent: "functions" +#tags: [operators,logic] +signature: ["ge ARG1 ARG2"] +workson: [] +hugoversion: +relatedfuncs: [] +deprecated: false +aliases: [] +--- + + +``` +{{ if ge 10 5 }}true{{ end }} +``` diff --git a/content/functions/gt.md b/content/functions/gt.md new file mode 100644 index 000000000..073c3b2b9 --- /dev/null +++ b/content/functions/gt.md @@ -0,0 +1,25 @@ +--- +title: gt +linktitle: gt +description: Returns the boolean truth of arg1 > arg2. +godocref: +date: 2017-07-26 +publishdate: 2017-07-26 +lastmod: 2017-07-26 +categories: [functions] +menu: + docs: + parent: "functions" +#tags: [operators,logic] +signature: ["gt ARG1 ARG2"] +workson: [] +hugoversion: +relatedfuncs: [] +deprecated: false +aliases: [] +--- + + +``` +{{ if gt 10 5 }}true{{ end }} +``` diff --git a/content/functions/le.md b/content/functions/le.md new file mode 100644 index 000000000..f1167b985 --- /dev/null +++ b/content/functions/le.md @@ -0,0 +1,25 @@ +--- +title: le +linktitle: le +description: Returns the boolean truth of arg1 <= arg2. +godocref: +date: 2017-07-26 +publishdate: 2017-07-26 +lastmod: 2017-07-26 +categories: [functions] +menu: + docs: + parent: "functions" +#tags: [operators,logic] +signature: ["le ARG1 ARG2"] +workson: [] +hugoversion: +relatedfuncs: [] +deprecated: false +aliases: [] +--- + + +``` +{{ if le 5 10 }}true{{ end }} +``` diff --git a/content/functions/lt.md b/content/functions/lt.md new file mode 100644 index 000000000..16d32b49b --- /dev/null +++ b/content/functions/lt.md @@ -0,0 +1,25 @@ +--- +title: lt +linktitle: lt +description: Returns the boolean truth of arg1 < arg2. +godocref: +date: 2017-07-26 +publishdate: 2017-07-26 +lastmod: 2017-07-26 +categories: [functions] +menu: + docs: + parent: "functions" +#tags: [operators,logic] +signature: ["lt ARG1 ARG2"] +workson: [] +hugoversion: +relatedfuncs: [] +deprecated: false +aliases: [] +--- + + +``` +{{ if lt 5 10 }}true{{ end }} +``` diff --git a/content/functions/ne.md b/content/functions/ne.md new file mode 100644 index 000000000..75d8b07b8 --- /dev/null +++ b/content/functions/ne.md @@ -0,0 +1,25 @@ +--- +title: ne +linktitle: ne +description: Returns the boolean truth of arg1 != arg2. +godocref: +date: 2017-07-26 +publishdate: 2017-07-26 +lastmod: 2017-07-26 +categories: [functions] +menu: + docs: + parent: "functions" +#tags: [operators,logic] +signature: ["ne ARG1 ARG2"] +workson: [] +hugoversion: +relatedfuncs: [] +deprecated: false +aliases: [] +--- + + +``` +{{ if ne .Section "blog" }}current{{ end }} +``` diff --git a/content/functions/replacere.md b/content/functions/replacere.md index 1bd4399ca..9b04c8a33 100644 --- a/content/functions/replacere.md +++ b/content/functions/replacere.md @@ -1,5 +1,5 @@ --- -title: replacere +title: replaceRE # linktitle: replaceRE description: Replaces all occurrences of a regular expression with the replacement pattern. godocref: diff --git a/content/functions/safeURL.md b/content/functions/safeURL.md index 6d94daab1..b0b6c6787 100644 --- a/content/functions/safeURL.md +++ b/content/functions/safeURL.md @@ -43,14 +43,12 @@ The following is an example of a sidebar partial that may be used in conjunction This partial would produce the following HTML output: -{{% output file="bad-url-sidebar-menu-output.html" %}} -``` +{{< output file="bad-url-sidebar-menu-output.html" >}} -``` -{{% /output %}} +{{< /output >}} The odd output can be remedied by adding ` | safeURL` to our `.Title` page variable: @@ -63,13 +61,11 @@ The odd output can be remedied by adding ` | safeURL` to our `.Title` page varia With the `.URL` page variable piped through `safeURL`, we get the desired output: -{{% output file="correct-url-sidebar-menu-output.html" %}} -``` +{{< output file="correct-url-sidebar-menu-output.html" >}} -``` -{{% /output %}} +{{< /output >}} [configuration]: /getting-started/configuration/ [menus]: /content-management/menus/ diff --git a/content/functions/shuffle.md b/content/functions/shuffle.md index 33c68a90a..376ca3a3d 100644 --- a/content/functions/shuffle.md +++ b/content/functions/shuffle.md @@ -29,13 +29,11 @@ aliases: [] This example would return the following: -{{% output file="shuffle-output.html" %}} -``` +{{< output file="shuffle-output.html" >}}
2 5 3 1 4
buzz foo bar
-``` -{{% /output %}} +{{< /output >}} This example also makes use of the [slice](/functions/slice/) and [seq](/functions/seq/) functions. diff --git a/content/functions/slice.md b/content/functions/slice.md index 49bf030d0..e71c3f988 100644 --- a/content/functions/slice.md +++ b/content/functions/slice.md @@ -1,7 +1,7 @@ --- title: slice # linktitle: slice -description: Creates a alice (array) of all passed arguments. +description: Creates a slice (array) of all passed arguments. godocref: date: 2017-02-01 publishdate: 2017-02-01 diff --git a/content/functions/urlize.md b/content/functions/urlize.md index 9ddf47d4e..712701a89 100644 --- a/content/functions/urlize.md +++ b/content/functions/urlize.md @@ -51,8 +51,7 @@ The following might be used as a partial within a [single page template][singlet The preceding partial would then output to the rendered page as follows, assuming the page is being built with Hugo's default pretty URLs. -{{% output file="/blog/greatest-city/index.html" %}} -``` +{{< output file="/blog/greatest-city/index.html" >}}

The World's Greatest City

Chicago IL
@@ -68,8 +67,7 @@ The preceding partial would then output to the rendered page as follows, assumin
-``` -{{% /output %}} +{{< /output >}} [singletemplate]: /templates/single-page-templates/ diff --git a/content/getting-started/installing.md b/content/getting-started/installing.md index d7d79ef9c..bc87bff1d 100644 --- a/content/getting-started/installing.md +++ b/content/getting-started/installing.md @@ -28,10 +28,10 @@ Hugo is written in [Go](https://golang.org/) with support for multiple platforms Hugo currently provides pre-built binaries for the following: -* macOS (Darwin) for x64, i386, and ARM architectures -* Windows -* Linux -* FreeBSD +* macOS (Darwin) for x64, i386, and ARM architectures +* Windows +* Linux +* FreeBSD Hugo may also be compiled from source wherever the Go compiler tool chain can run; e.g., on other operating systems such as DragonFly BSD, OpenBSD, Plan 9, Solaris, and others. See for the full set of supported combinations of target operating systems and compilation architectures. @@ -87,7 +87,7 @@ go install github.com/gohugoio/hugo If you are a Windows user, substitute the `$HOME` environment variable above with `%USERPROFILE%`. {{% /note %}} -## macOS +## macOS ### Assumptions @@ -295,7 +295,7 @@ go build -o hugo main.go Then place the `hugo` executable somewhere in your `$PATH`. You're now ready to start using Hugo. -## Windows +## Windows The following aims to be a complete guide to installing Hugo on your Windows PC. @@ -410,14 +410,26 @@ C:\Hugo\Sites\example.com>dir {{< youtube c8fJIRNChmU >}} -## Linux +## Linux + +### Snap Package + +In any of the [Linux distributions that support snaps][snaps]: + +``` +snap install hugo +``` + +{{% note %}} +Hugo-as-a-snap can write only inside the user’s `$HOME` directory---and gvfs-mounted directories owned by the user---because of Snaps’ confinement and security model. More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143). +{{% /note %}} ### Debian and Ubuntu -In any of the [Linux distributions that support snaps](https://snapcraft.io/docs/core/install): +Debian and Ubuntu provide a `hugo` version via `apt-get`: ``` -sudo apt install hugo +sudo apt-get install hugo ``` #### Pros @@ -427,7 +439,7 @@ sudo apt install hugo #### Cons -* Might not be the latest version, especially if you are using an older, stable version (e.g., Ubuntu 16.04 LTS). Until backports and PPA are available, you may consider installing the Hugo snap package to get the latest version of Hugo, as described below. +* Might not be the latest version, especially if you are using an older, stable version (e.g., Ubuntu 16.04 LTS). Until backports and PPA are available, you may consider installing the Hugo snap package to get the latest version of Hugo. ### Arch @@ -447,17 +459,6 @@ yaourt -S hugo See the [related discussion in the Hugo forums][redhatforum]. -### Snap Package - -In any of the [Linux distributions that support snaps][snaps]: - -``` -snap install hugo -``` - -{{% note %}} -Hugo-as-a-snap can write only inside the user’s `$HOME` directory---and gvfs-mounted directories owned by the user---because of Snaps’ confinement and security model. More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143). -{{% /note %}} ## Upgrade Hugo diff --git a/content/getting-started/quick-start.md b/content/getting-started/quick-start.md index 5559a27b3..f7413ac3b 100644 --- a/content/getting-started/quick-start.md +++ b/content/getting-started/quick-start.md @@ -1,10 +1,9 @@ --- title: Quick Start linktitle: Quick Start -description: Build an online bookshelf that taps into Hugo's CLI, directory structure, configuration, and theming. +description: Create a Hugo site using the beautiful Ananke theme. date: 2013-07-01 publishdate: 2013-07-01 -lastmod: 2017-06-22 categories: [getting started] #tags: [quick start,usage] authors: [Shekhar Gulati, Ryan Watters] @@ -15,534 +14,127 @@ menu: weight: 10 sections_weight: 10 draft: false -aliases: [/overview/quickstart/] +aliases: [/quickstart/,/overview/quickstart/] toc: true -wip: true --- {{% note %}} -This Quick Start was originally written by [Shekhar Gulati](https://twitter.com/shekhargulati) in his [52 Technologies in 2016](https://github.com/shekhargulati/52-technologies-in-2016) blog series but has been heavily modified to represent additional features and other changes to Hugo. +This quick start uses `macOS` in the examples. For instructions about how to install Hugo on other operating systems, see [install](/getting-started/installing). + +You also need [Git installed](https://git-scm.com/downloads) to run this tutorial. {{% /note %}} -In this Quick Start, we will build an online bookshelf that lists books and their reviews. -## Step 1. Install Hugo -[Install Hugo][install]. If installing from [Hugo releases][releases], you'll need to save the main executable as `hugo` (or `hugo.exe` on Windows) somewhere in your `PATH`. You will need the `hugo` command in the following steps. +## Step 1: Install Hugo -{{% note "Windows Users and Git Bash" %}} -If you're on Windows, this Quick Start will assume you're using [Git Bash](https://git-for-windows.github.io/) (aka Git for Windows). +{{% note %}} +`Homebrew`, a package manager for `macOS`, can be installed from [brew.sh](https://brew.sh/). See [install](/getting-started/installing) if you are running Windows etc. {{% /note %}} -Once `hugo` is installed, make sure to run the `help` command to verify `hugo` installation. The following is an abridged version of what will write to the console when entering the command: - -``` -hugo help - -hugo is the main command, used to build your Hugo site. - -Hugo is a Fast and Flexible Static Site Generator -built with love by spf13 and friends in Go. - -Complete documentation is available at http://gohugo.io/. +```bash +brew install hugo ``` -You can check the version of Hugo you're currently using with the `hugo version` command: +To verify your new install: -``` +```bash hugo version ``` -``` -Hugo Static Site Generator v0.18.1 BuildDate: 2016-12-30T05:02:43-05:00 + +{{< asciicast HDlKrUrbfT7yiWsbd6QoxzRTN >}} + + +## Step 2: Create a New Site + +```bash +hugo new site quickstart ``` -## Step 2. Scaffold Your Hugo Bookshelf Website +The above will create a new Hugo site in a folder named `quickstart`. -Hugo's CLI has commands that allow you to quickly scaffold a new website. Navigate to your preferred location on your file system and create a new Hugo site `bookshelf` by executing the `hugo new` command: +{{< asciicast 1PH9A2fs14Dnyarx5v8OMYQer >}} -``` -hugo new site bookshelf + +## Step 3: Add a Theme + +See [themes.gohugo.io](https://themes.gohugo.io/) for a list of themes to consider. This quickstart uses the beautiful [Ananke theme](https://themes.gohugo.io/gohugo-theme-ananke/). + +```bash +cd quickstart;\ +git init;\ +git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke;\ + +# Edit your config.toml configuration file +# and add the Ananke theme. +echo 'theme = "ananke"' >> config.toml ``` -Change into the newly created `bookshelf` directory. Listing the new directory's content will show the following: + +{{< asciicast WJM2LEZQs8VRhNeuZ5NiGPp9I >}} + +## Step 4: Add Some Content ``` -. -├── archetypes -├── config.toml -├── content -├── data -├── layouts -├── static -└── themes - -6 directories, 1 file +hugo new posts/my-first-post.md ``` -You'll see the `bookshelf` directory has 6 subdirectories and 1 file. Let's look at each of them quickly. (See [Directory Structure][hugodirectories].) -* `archetypes`: [Archetypes][archetypes] allow you to preconfigure [front matter][fm] for content files for easier scaffolding of content from the command line using `hugo new`. -* `config.toml`: Hugo uses `.toml` as its default configuration format but also accepts `.yml` and `.json`. The configuration settings mentioned in the `config.toml` are applied to the full website an include important global variables such as the `baseURL` and `title` of your website. (See [Configuration][configuration].) -* `content`: This single directory houses all of the content for your website. Each subdirectory in content is considered a [section][]. If your website has sections for posts, events, and tutorials, you would create `content/posts`, `content/events`, and `content/tutorials`. -* `data`: This directory is used to store files of serialized data (YAML, TOML, or JSON) that can be used in [data templates][datatemplates] and your [website's menu][sitemenu]. -* `layouts`: This is the hub for all your [templating][templating], including [list and section templates](/templates/lists/) and [shortcodes](/templates/shortcode-templates/). -* `static`: This houses all your static content; i.e., images, JavaScript, and CSS. Everything in `/static` is copied over *as is* to your finished website. -* `themes`: This is where you will download themes for Hugo. You can see a showcase of all themes at . - -## Step 3. Add Content - -Let's now add a post to our "bookshelf." We will use the `hugo new` command to add a post. This first post will be on the book [*Good To Great*][bookurl]. Make sure you are inside the `bookshelf` directory. - -{{< code file="create-new-book-review-post.sh" >}} -hugo new post/good-to-great.md -{{< /code >}} - -You should then see the following output: +Edit the newly created content file if you want. Now, start the Hugo server with [drafts](/getting-started/usage/#draft-future-and-expired-content) enabled: ``` -/Users/yourusername/bookshelf/content/post/good-to-great.md created -``` +▶ hugo server -D -The above command will create a new directory `post` inside the `content` directory and create `content/post/good-to-great.md`. The directory for your Hugo project will now look like the following: - -``` -. -├── archetypes -├── config.toml -├── content -│   └── post -│   └── good-to-great.md -├── data -├── layouts -├── static -└── themes -``` - -Open `good-to-great.md` in your preferred text editor: - -``` -+++ -date = "2017-02-19T21:09:05-06:00" -title = "good to great" -draft = true - -+++ -``` - -The text bracketed by `+++` is the TOML [front matter][fm] for the content. Front matter enables you to define embedded metadata that travels with the content file. Since we have not configured any [archetypes][archetypes] for our project, Hugo has used its built-in base archetype, which includes the following three values in the front matter: - -* `date` specifies the date and time at which post was created from the command line -* `title` specifies the title for the post, which Hugo will infer from the file name -* `draft`, when set to `true`, tells Hugo the content is not yet ready to be published - -Let's update `good-to-great.md` with a short review of *Good to Great*: - -{{< code file="good-to-great-start.md" >}} -+++ -date = "2016-02-14T16:11:58+05:30" -draft = true -title = "Good to Great Book Review" -+++ - -I read **Good to Great in January 2016**. An awesome read sharing detailed analysis on how good companies became great. Although this book is about how companies became great but we could apply a lot of the learnings on ourselves. Concepts like level 5 leader, hedgehog concept, the stockdale paradox are equally applicable to individuals. -{{< /code >}} - -## Step 4. Serve Content - -Hugo has a built-in server that can serve your website locally for easy previewing and development. To serve content, execute the following command inside the `bookshelf` directory: - -``` -hugo server -``` - -You should see something similar to the following output: - -``` -Built site for language en: -0 of 1 draft rendered -0 future content -0 expired content -0 regular pages created -1 other pages created -0 non-page files copied -0 paginator pages created -0 tags created -0 categories created -total in 1 ms -Watching for changes in /Users/yourusername/bookshelf/{data,content,layouts,static} -Serving pages from memory -Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) -Press Ctrl+C to stop -``` - -This will start the server on port `1313`. You can view your blog at . However, when you go to the link, you will see nothing. This is for a couple reasons: - -1. As you can see in the `hugo server` command output, Hugo did *not* render the draft. Hugo will only render drafts if you pass the `buildDrafts` flag to the `hugo server` command. -2. We have not specified how Markdown content should be rendered. We need to create our own layouts via templates or specify a theme, the latter of which we will do in the next step. - -Kill the server using Ctrl + C and then rerun the server with the `--buildDrafts` flag appended to the command: - -``` -hugo server --buildDrafts -``` - -You should now see something similar to the following: - -``` -Built site for language en: -1 of 1 draft rendered -0 future content -0 expired content -1 regular pages created -2 other pages created -0 non-page files copied -0 paginator pages created -0 tags created -0 categories created -total in 2 ms -Watching for changes in /Users/yourusername/bookshelf/{data,content,layouts,static} -Serving pages from memory -Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) -Press Ctrl+C to stop -``` - -Okay, so we now have our single page "built," but we're not seeing anything in the browser at . This was only to demonstrate the utility of the `--buildDrafts` flag. - -While we are getting closer, we still need to specific a theme for Hugo to use when building our site. - -## Step 5. Add A Theme - -[Themes][themessection] provide Hugo with layout and templates to render your website. You can see the full selection of open-source themes at . - -{{% note "No Default Hugo Theme" %}} -Hugo currently doesn’t ship with a default theme, thus allowing end users to pick whichever theme best suits their projects. -{{% /note %}} - -Themes should be added in the `themes` directory, one of the directories scaffolded with the `hugo new site` command we used to start our Hugo project. To install our themes, first change into the `themes` directory: - -``` -cd themes -``` - -You can clone one or more themes from within the `themes` directory. We will use the [Robust theme][robusttheme] but at the most recent commit as of this Quick Start's last update. - -Once inside the `themes` directory, you can use the following one-liner to clone Robust, check out the specific commit, and then return to your project's root directory: - -{{< code file="clone-robust-theme" >}} -git clone https://github.com/dim0627/hugo_theme_robust.git && cd hugo_theme_robust && git checkout 3baae29 && cd ../.. -{{< /code >}} - -Now let's start Hugo's server again but with the addition of the `-theme` flag for Robust: - -{{< code file="hugo-server-with-theme.sh" >}} -hugo server --theme=hugo_theme_robust --buildDrafts -{{< /code >}} - -You should see an output to the console similar to the following: - -``` -Built site for language en: -1 of 1 draft rendered -0 future content -0 expired content -1 regular pages created -2 other pages created -0 non-page files copied -2 paginator pages created -0 tags created -0 categories created -total in 8 ms -Watching for changes in /Users/yourusername/bookshelf/{data,content,layouts,static,themes} -Serving pages from memory -Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) -Press Ctrl+C to stop -``` - -If Hugo doesn't find the specified theme in the `themes` directory, -it will throw an exception: - -``` -FATAL: 2016/02/14 Unable to find theme Directory: /Users/yourusername/bookshelf/themes/robust -``` - -To view your website, you can go to . You should see something similar to the following image: - -![](/images/quickstart/bookshelf-robust-theme.png) - -Similar to the way we looked at the scaffolding for our new Hugo website, let's take a look at what comprises a typical Hugo theme. The following is only a selection of what you would see if you were to list out the contents of the Robust theme directory. These are also some of the default files created by Hugo as of v0.23. (See [Creating a Theme][createtheme]) - -``` -. -├── LICENSE.md -├── archetypes -│   └── default.md -├── layouts -│   ├── 404.html -│   ├── _default -│   │   ├── list.html -│   │   └── single.html -│   ├── index.html -│   └── partials -│   ├── footer.html -│   └── header.html -├── static -│   ├── css -│   └── js -└── theme.toml -``` - -* `theme.toml` is the theme configuration file that provides information about the theme; e.g., theme name, theme description, theme author, theme license, and minimum Hugo version, which will default to your locally installed version of Hugo. -* `layouts` contains different views (i.e., [templates][templating]) for different content types. In this quick start, we see that each content type has a `single.html` and `list.html`. `single.html` is used for rendering a single piece of content. `list.html` is used to view a list of content items. For example, you will use `list.html` to view `*.md` in the posts [section][listsectiontemplates]. Think of `list.html` as `example.com/posts` and `single.html` as `example.com/posts/my-single-post/`. -* `static` has the same purpose as that of the `static` in our original scaffolding. This directory stores all the static assets used by the theme and is copied over *as is* at build time. - -## Step 6. Use Multiple Themes - -You can very easily switch between different themes in Hugo. Let's suppose we want to try out the [`bleak` theme][bleaktheme]. Kill the Hugo server if you are still running it from the command line. - -From your project root, you can use this one-liner to change into `themes`, clone Bleak, and go back to your project's root directory: - -{{< code file="clone-bleak-theme.sh" >}} -cd themes && git clone https://github.com/Zenithar/hugo-theme-bleak.git && cd .. -{{< /code >}} - -Now restart the server with our new theme flag: - -{{< code file="run-server-with-bleak.sh" >}} -hugo server --theme=hugo-theme-bleak --buildDrafts -{{< /code >}} - -Our website is now using the `bleak` theme at , which should look similar to the following screenshot: - -![Screenshot of the Quick Start website's homepage running with the Bleak Hugo theme.](/images/quickstart/bookshelf-bleak-theme.png) - -## Step 7. Update Your Configuration - -Kill the Hugo server if you are still running it with the Bleak theme, and then restart the server with the `robust` theme. We will use Robust for the duration of this Quick Start: - -{{< code file="restart-with-robust-sh" >}} -hugo server --theme=hugo_theme_robust --buildDrafts -{{< /code >}} - -### Update Our `config.toml` - -Our website is currently using the dummy values specified in `bookshelf/config.toml`, which were auto-generated with `hugo new site bookshelf`. Let's update the configuration: - -{{< code file="updated-config.toml" >}} -baseURL = "http://example.org/" -languageCode = "en-us" -title = "Shekhar Gulati Book Reviews" - -[Params] - Author = "Shekhar Gulati" -{{< /code >}} - -### Watch Your Site Reload Instantly - -Hugo has built-in support for LiveReload. This means that Hugo will rebuild and reload your site every time you save a change to content, templates, static assets, and even your configuration. You should see something similar to the following screenshot at once you save the above changes to your `config.toml`: - -![](/images/quickstart/bookshelf-updated-config.png) - -The change is also reflected in the console. As soon as you changed the configuration file, Hugo applied those changes to the affected pages and rebuilt the site: - -``` -Config file changed: /Users/yourusername/bookshelf/config.toml Started building sites ... Built site for language en: 1 of 1 draft rendered 0 future content 0 expired content 1 regular pages created -2 other pages created +8 other pages created 0 non-page files copied -2 paginator pages created -0 tags created +1 paginator pages created 0 categories created -total in 20 ms +0 tags created +total in 18 ms +Watching for changes in /Users/bep/sites/quickstart/{data,content,layouts,static,themes} +Serving pages from memory +Web Server is available at http://localhost:1313/ (bind address 127.0.0.1) +Press Ctrl+C to stop ``` -## Step 8. Customize the Robust Theme -The `robust` theme is a good start towards our online bookshelf, but we want to customize it a bit to meet our desired look and feel. Hugo makes it very easy to [customize existing themes or create your own][themes] themes as well. For the purpose of the Quick Start, we will focus on customization. +**Navigate to your new site at [http://localhost:1313/](http://localhost:1313/).** -The first change that we have to make is to use a different default image instead of the one used in the theme. The theme's default image used in both the `list.html` and `single.html` views resides inside `themes/hugo_theme_robust/static/images/default.jpg`. We can easily override it by creating a simple directory structure inside our repository's `static` directory. -Create an images directory inside of `bookshelf/static` and copy an image with name `default.jpg` inside of it. We will use the default image shown below. -![](/images/quickstart/default.jpg) +## Step 5: Customize the Theme -Hugo will sync the changes and reload the website to use the new image: +Your new site already looks great, but you will want to tweak it a little before you release it to the public. -![](/images/quickstart/bookshelf-new-default-image.png) +### Site Configuration -Now we need to change the layout of the index page so that only images are shown instead of the text. The file at `themes/hugo_theme_robust/layouts/index.html` refers to a partial `li.html` template that renders the following list view: +Open up `config.toml` in a text editor: ``` - +baseURL = "http://example.org/" +languageCode = "en-us" +title = "My New Hugo Site" +theme = "ananke" ``` -Create a new file for `li.html` inside the `bookshelf/layouts/_default` directory. If you are in your project root, you can use the following one-liner to both create the file and return to the project root: +Replace the `title` above with something more personal. Also, if you already have a domain ready, set the `baseURL`. Note that this value is not needed when running the local development server. -{{< code file="create-new-li-html.sh" >}} -cd layouts && mkdir _default && cd _default && touch li.html && cd ../.. -{{< /code >}} - -Copy the content shown below into the new `li.html`. When contrasting this with the `li.html` that ships with the Robust theme, you'll notice we have removed details of the book so that only the image is shown: - -{{< code file="layouts/_default/li.html" >}} - -{{< /code >}} - -Now, the website should render similar to the following screenshot: - -![](/images/quickstart/bookshelf-only-picture.png) - -Next, we want to remove information related to the theme from the footer. Let's create a new directory at `bookshelf/layouts/partials`. This will hold our new file called `default_foot.html`. - -This is a new [partial template][partials]. If you are still in the project's root directory, you can use the following one-liner to create the partial before returning to the project root: - -{{< code file="create-new-default-foot.sh" >}} -cd layouts && mkdir partials && cd partials && touch default_foot.html && cd ../.. -{{< /code >}} - -Now add the following to our new `default_foot.html` partial template: - -{{< code file="layouts/partials/default_foot.html" >}} -
-

{{ with .Site.Copyright | safeHTML }}{{ . }}{{ else }}© {{ $.Site.LastChange.Year }} {{ if isset $.Site.Params "Author" }}{{ $.Site.Params.Author }}{{ else }}{{ .Site.Title }}{{ end }}{{ end }}

-

Powered by Hugo,

-
-{{< /code >}} - -So far we are using the default image, but we would like to use the book image so that we can relate to the book. Every book review will define a configuration setting in its front matter. Update the content and front matter of `good-to-great.md` as shown below. - -{{< code file="content/post/good-to-great.md" >}} -+++ -date = "2017-02-19T21:09:05-06:00" -draft = true -title = "Good to Great Book Review" -image = "good-to-great.jpg" -+++ - -I read **Good to Great in January 2016**. An awesome read sharing detailed analysis on how good companies became great. Although this book is about how companies became great but we could apply a lot of the learnings on ourselves. Concepts like level 5 leader, hedgehog concept, the stockdale paradox are equally applicable to individuals. -{{< /code >}} - -Grab a (legal) image from somewhere, name it `good-to-great.jpg`, and place it in the `bookshelf/static/images` directory. - -After adding a few more books to our shelf, the shelf appears as shown below. - -![](/images/quickstart/bookshelf.png) - - -## Step 9. Make Your Posts Public - -So far, all the posts that we have written are in draft status (i.e., `draft = true`). To make a draft public, you can run a Hugo CLI command or manually change the draft status in the post's front matter to `false`. Hugo provides a handy command line argument called `undraft` to do this for us: - -``` -hugo undraft content/post/good-to-great.md -``` - -If we check the front matter of `good-to-great.md` after running this command, we'll notice that Hugo has written the change of draft status to the file: - -``` -+++ -date = "2017-02-19T22:42:53-06:00" -draft = false -title = "Good to Great Book Review" -image = "good-to-great.jpg" -+++ -``` - -Now, we can start the server *without* the `buildDrafts` option. - -``` -hugo server --theme=hugo_theme_robust -``` - - -## Step 10. Build Your Website +## Recapitulation -To generate a website that can be deployed to GitHub pages, we first need to change the `baseURL` in our configuration as follows: - -``` -baseURL = "https://.github.io/bookshelf/" -``` - -Then type the following command while in the root directory of your Hugo project: - -``` -hugo --theme=hugo_theme_robust -0 draft content -0 future content -5 pages created -2 paginator pages created -0 tags created -0 categories created -in 17 ms -``` - -After you run the `hugo` command, a `bookshelf/public` directory will be created containing the generated website source. - -## Step 11. What Next? - -**Congratulations!** Your new `bookshelf`/public directory is a fully generated, deployable Hugo website. Since all your files are *static*, you have innumerable options for hosting, and your new directory structure and simple content format are going to make scaling your website a breeze. - -Here's what you should look into next: - -1. [See hosting and deployment options][hostinganddeploy] for sharing your newly created Hugo website with the world. -2. [Learn more about Hugo's powerful templating][templating] to tailor your new Hugo website to your specific needs and keep it scaling accordingly. -3. [Visit the Hugo Discussion Forum][forum] to ask questions, answer questions, and become an active member of the Hugo community. - -[archetypes]: /content-management/archetypes/ -[bookurl]: https://www.amazon.com/Good-Great-Some-Companies-Others/dp/0066620996/ -[bleaktheme]: http://themes.gohugo.io/bleak/ -[configuration]: /getting-started/configuration/ -[createtheme]: /themes/creating/ -[datatemplates]: /templates/data-templates/ -[forum]: https://discourse.gohugo.io -[fm]: /content-management/front-matter/ -[hostinganddeploy]: /hosting-and-deployment/ -[hugodirectories]: /getting-started/directory-structure/ -[install]: /getting-started/installing/ -[lists]: /templating/lists/ -[partials]: /templates/partials/ -[quickinstall]: /getting-started/installing/#quick-install -[releases]: https://github.com/gohugoio/hugo/releases -[robusttheme]: https://github.com/dim0627/hugo_theme_robust -[section]: /content-management/sections/ -[sectiontemplates]: /templates/section-templates/ -[shortcodetemplates]: /templates/shortcode-templates/ -[sitemenu]: /content-management/menus/ -[templating]: /templates/introduction/ -[themessection]: /themes/ -[themes]: /themes/ +{{< asciicast pWp4uvyAkdWgQllD9RCfeBL5k >}} diff --git a/content/getting-started/usage.md b/content/getting-started/usage.md index b28a634a5..60882634d 100644 --- a/content/getting-started/usage.md +++ b/content/getting-started/usage.md @@ -18,7 +18,7 @@ aliases: [/overview/usage/,/extras/livereload/,/doc/usage/,/usage/] toc: true --- -The following is a description of the most command commands you will use while developing your Hugo project. See the [Command Line Reference][commands] for a comprehensive view of Hugo's CLI. +The following is a description of the most common commands you will use while developing your Hugo project. See the [Command Line Reference][commands] for a comprehensive view of Hugo's CLI. ## Test Installation diff --git a/content/news/http2-server-push-in-hugo.md b/content/news/http2-server-push-in-hugo.md new file mode 100644 index 000000000..76c39094e --- /dev/null +++ b/content/news/http2-server-push-in-hugo.md @@ -0,0 +1,79 @@ +--- +title: "HTTP/2 Server Push in Hugo" +date: 2017-07-24T18:36:00+02:00 +description: > + As every page in Hugo can be output to multiple formats, it is easy to create Netlify's _redirects and _headers files on the fly. +categories: [blog] +#tags: [] +slug: "http2-server-push-in-hugo" +aliases: [] +author: bep +images: +- images/gohugoio-card-1.png +--- + +**Netlify** recently announced support for [HTTP/2 server push](https://www.netlify.com/blog/2017/07/18/http/2-server-push-on-netlify/), and we have now added it to the **gohugo.io** sites for the main `CSS` and `JS` bundles, along with server-side 301 redirect support. + +If you navigate to https://gohugo.io and look in the Chrome developer network console, you should now see `Push` as the new source ("Initiator") for the `CSS` and `JSS`: + +{{< figure src="/images/blog/hugo-http2-push.png" caption="Network log for https://gohugo.io" >}} + +**Setting up this in Hugo was easy:** + +## 1. Configure Netlify Output Formats + +Add a new custom media type and two new output formats to `config.toml`. For more on output formats in Hugo, see [Custom Output Formats](/templates/output-formats/). +```bash +[outputs] +home = [ "HTML", "RSS", "REDIR", "HEADERS" ] + +[mediaTypes] +[mediaTypes."text/netlify"] +suffix = "" +delimiter = "" + +[outputFormats] +[outputFormats.REDIR] +mediatype = "text/netlify" +baseName = "_redirects" +isPlainText = true +notAlternative = true +[outputFormats.HEADERS] +mediatype = "text/netlify" +baseName = "_headers" +isPlainText = true +notAlternative = true +``` +## 2. Add Template For the _headers File + +Add `layouts/index.headers`: + +```bash +/* + X-Frame-Options: DENY + X-XSS-Protection: 1; mode=block + X-Content-Type-Options: nosniff + Referrer-Policy: origin-when-cross-origin +*/ + Link: <{{ "dist/app.bundle.js" | relURL }}>; rel=preload; as=script + Link: <{{ "dist/main.css" | relURL }}>; rel=preload; as=style +``` +The template above creates both a security header definition and a HTTP/2 server push configuration. + +Also note that this is a template for the home page, so the full `Page` with its `Site` and many variables are available. You can also use `partial` to include other templates. + + + + +## 3. Add Template For the _redirects File +Add `layouts/index.redirects`: +```bash +# Netlify redirects. See https://www.netlify.com/docs/redirects/ +{{ range $p := .Site.Pages -}} +{{ range .Aliases }} +{{ . | printf "%-35s" }} {{ $p.RelPermalink -}} +{{ end -}} +{{- end -}} +``` +The template above creates 301 redirects for your [aliases](/content-management/urls/#aliases), so you will probably want to turn off aliases in your `config.toml`: `disableAliases = true`. + diff --git a/content/news/press-and-articles.md b/content/news/press-and-articles.md deleted file mode 100644 index ef05556e2..000000000 --- a/content/news/press-and-articles.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Press and Articles -linktitle: Press and Articles -description: A list of articles, blog posts, or tutorials where Hugo is featured. -date: 2016-02-01 -publishdate: 2017-02-01 -lastmod: 2017-02-01 -#tags: [articles, tutorials, press] -categories: [news and articles] -menu: - main: - parent: "News" - weight: 30 -weight: 30 -sections_weight: 30 -draft: false -aliases: [/community/press/] -toc: false -notesforauthors: "If adding an item to the articles list, be sure to follow the format of '| [Linked Title]() | Author Name | YYYY-MM-DD |'." ---- - -{{% note "Help Keep This List Up to Date" %}} -Know of a post, article, or tutorial on Hugo? [Please add it to this list](https://github.com/gohugoio/hugo/edit/master/docs/content/news/press-and-articles.md). -{{% /note %}} - -Hugo has been featured in the following Blog Posts, Press, and Media. - -{{< articlelist >}} diff --git a/content/news/release-notes.md b/content/news/release-notes.md deleted file mode 100644 index 5af546b1f..000000000 --- a/content/news/release-notes.md +++ /dev/null @@ -1,981 +0,0 @@ ---- -title: Release Notes -linktitle: Release Notes -description: See the full list of Hugo release notes since v0.05 in June 2015. -date: 2016-02-01 -publishdate: 2017-02-01 -lastmod: 2017-02-01 -categories: [releases] -draft: false -aliases: [/meta/release-notes/] -toc: true ---- - -## **0.20.2** April 16th 2017 - -Hugo `0.20.2` adds support for plain text partials included into `HTML` templates. This was a side-effect of the big new [Custom Output Format](/templates/output-formats/) feature in `0.20`, and while the change was intentional and there was an ongoing discussion about fixing it in {{< gh 3273 >}}, it did break some themes. There were valid workarounds for these themes, but we might as well get it right. - -The most obvious use case for this is inline `CSS` styles, which you now can do without having to name your partials with a `html` suffix. - -A simple example: - -In `layouts/partials/mystyles.css`: - -``` -body { - background-color: {{ .Param "colors.main" }} -} -``` - -Then in `config.toml` (note that by using the `.Param` lookup func, we can override the color in a page's front matter if we want): - -``` -[params] -[params.colors] -main = "green" -text = "blue" -``` - -And then in `layouts/partials/head.html` (or the partial used to include the head section into your layout): - -``` - - - -``` - -Of course, `0.20` also made it super-easy to create external `CSS` stylesheets based on your site and page configuration. A simple example: - -Add "CSS" to your home page's `outputs` list, create the template `/layouts/index.css` using Go template syntax for the dynamic parts, and then include it into your `HTML` template with: - -``` -{{ with .OutputFormats.Get "css" }} - -{{ end }}` -``` - -## **0.20.1** April 13th 2017 - -Hugo `0.20.1` is a bug fix release, fixing some important regressions introduced in `0.20` a couple of days ago: - -* Fix logic for base template in a work directory vs in a theme {{< gh 3323 >}} -* camelCased templates (partials, shortcodes, etc.) not found {{< gh 3333 >}} -* LiveReload fails with `_index.md` with paginator {{< gh 3315 >}} -* `rssURI` WARNING always shown {{< gh 3319 >}} - -See the [full list of closed issues on GitHub](https://github.com/gohugoio/hugo/milestone/16?closed=1). - -## **0.20** April 10th 2017 - -Hugo `0.20` introduces the powerful and long sought after feature [Custom Output Formats](/templates/output-formats/)); Hugo isn't just that "static HTML with an added RSS feed" anymore. *Say hello* to calendars, e-book formats, Google AMP, and JSON search indexes, to name a few ({{< gh 2828 >}}). - -This release represents **over 180 contributions by over 30 contributors** to the main Hugo code base. Since last release Hugo has **gained 1100 stars, 20 new contributors and 5 additional themes.** - -Hugo now has: - -* 16300+ stars -* 495+ contributors -* 156+ themes - -{{< gh "@bep" >}} still leads the Hugo development with his witty Norwegian humor, and once again contributed a significant amount of additions. Also a big shoutout to {{< gh "@digitalcraftsman" >}} for his relentless work on keeping the documentation and the themes site in pristine condition, and {{< gh "@moorereason" >}} and {{< gh "@bogem" >}} for their ongoing contributions. - -### Other Highlights - -{{< gh "@bogem" >}} has also contributed TOML as an alternative and much simpler format for language/i18n files ({{< gh 3200 >}}). A feature you will appreciate when you start to work on larger translations. - -Also, there have been some important updates in the Emacs Org-mode handling: {{< gh "@chaseadamsio" >}} has fixed the newline-handling ({{< gh 3126 >}}) and {{< gh "@clockoon" >}} has added basic footnote support. - -Worth mentioning is also the ongoing work that {{< gh "@rdwatters" >}} and {{< gh "@budparr" >}} is doing to re-do the [gohugo.io](https://gohugo.io/) site, including a total restructuring and partial rewrite of the documentation. It is getting close to finished, and it looks fantastic! - -### Notes - -* `RSS` description in the built-in template is changed from full `.Content` to `.Summary`. This is a somewhat breaking change, but is what most people expect from their RSS feeds. If you want full content, please provide your own RSS template. -* The deprecated `.RSSlink` is now removed. Use `.RSSLink`. -* `RSSUri` is deprecated and will be removed in a future Hugo version, replace it with an output format definition. -* The deprecated `.Site.GetParam` is now removed, use `.Site.Param`. -* Hugo does no longer append missing trailing slash to `baseURL` set as a command line parameter, making it consistent with how it behaves from site config. {{< gh 3262 >}} - -### Enhancements - -* Hugo `0.20` is built with Go 1.8.1. -* Add `.Site.Params.mainSections` that defaults to the section with the most pages. Plan is to get themes to use this instead of the hardcoded `blog` in `where` clauses. {{< gh 3206 >}} -* File extension is now configurable. {{< gh 320 >}} -* Impove `markdownify` template function performance. {{< gh 3292 >}} -* Add taxonomy terms' pages to `.Data.Pages` {{< gh 2826 >}} -* Change `RSS` description from full `.Content` to `.Summary`. -* Ignore "." dirs in `hugo --cleanDestinationDir` {{< gh 3202 >}} -* Allow `jekyll import` to accept both `2006-01-02` and `2006-1-2` date format {{< gh 2738 >}} -* Raise the default `rssLimit` {{< gh 3145 >}} -* Unify section list vs single template lookup order {{< gh 3116 >}} -* Allow `apply` to be used with the built-in Go template funcs `print`, `printf` and `println`. {{< gh 3139 >}} - -### Fixes - -* Fix deadlock in `getJSON` {{< gh 3211 >}} -* Make sure empty terms pages are created. {{< gh 2977 >}} -* Fix base template lookup order for sections {{< gh 2995 >}} -* `URL` fixes: - * Fix pagination URLs with `baseURL` with sub-root and `canonifyUrls=false` {{< gh 1252 >}} - * Fix pagination URL for resources with "." in name {{< gh 2110 >}} {{< gh 2374 >}} {{< gh 1885 >}} - * Handle taxonomy names with period {{< gh 3169 >}} - * Handle `uglyURLs` ambiguity in `Permalink` {{< gh 3102 >}} - * Fix `Permalink` for language-roots wrong when `uglyURLs` is `true` {{< gh 3179 >}} - * Fix misc case issues for `URLs` {{< gh 1641 >}} - * Fix for taxonomies URLs when `uglyUrls=true` {{< gh 1989 >}} - * Fix empty `RSSLink` for list pages with content page. {{< gh 3131 >}} -* Correctly identify regular pages on the form "my_index_page.md" {{< gh 3234 >}} -* `Exit -1` on `ERROR` in global logger {{< gh 3239 >}} -* Document hugo `help command` {{< gh 2349 >}} -* Fix internal `Hugo` version handling for bug fix releases. {{< gh 3025 >}} -* Only return `RSSLink` for pages that actually have a RSS feed. {{< gh 1302 >}} - - -## **0.19** February 27th 2017 - -We're happy to announce the first release of Hugo in 2017. - -This release represents **over 180 contributions by over 50 contributors** to the main Hugo code base. Since last release Hugo has **gained 1450 stars, 35 new contributors, and 15 additional themes.** - -Hugo now has: - -* 15200+ stars -* 470+ contributors -* 151+ themes - -Furthermore, Hugo has its own Twitter account ([@gohugoio](https://twitter.com/gohugoio)) where we share bite-sized news and themes from the Hugo community. - -{{< gh "@bep" >}} leads the Hugo development and once again contributed a significant amount of additions. Also a big shoutout to {{< gh "@chaseadamsio" >}} for the Emacs Org-mode support, {{< gh "@digitalcraftsman" >}} for his relentless work on keeping the documentation and the themes site in pristine condition, {{< gh "@fj" >}}for his work on revising the `params` handling in Hugo, and {{< gh "@moorereason" >}} and {{< gh "@bogem" >}} for their ongoing contributions. - -### Highlights - -Hugo `0.19` brings native Emacs Org-mode content support ({{}}), big thanks to {{< gh "@chaseadamsio" >}}. - -Also, a considerably amount of work have been put into cleaning up the Hugo source code, in an issue titled [Refactor the globals out of site build](https://github.com/gohugoio/hugo/issues/2701). This is not immediately visible to the Hugo end user, but will speed up future development. - -Hugo `0.18` was bringing full-parallel page rendering, so workarounds depending on rendering order did not work anymore, and pages with duplicate target paths (common examples would be `/index.md` or `/about/index.md`) would now conflict with the homepage or the section listing. - -With Hugo `0.19`, you can control this behaviour by turning off page types you do not want ({{}}). In its most extreme case, if you put the below setting in your [`config.toml`](/getting-started/configuration/), you will get **nothing!**: - -``` -disableKinds = ["page", "home", "section", "taxonomy", "taxonomyTerm", "RSS", "sitemap", "robotsTXT", "404"] -``` - -### Other New Features - -* Add ability to sort pages by front matter parameters, enabling easy custom "top 10" page lists. {{}} -* Add `truncate` template function {{}} -* Add `now` function, which replaces the now deprecated `.Now` {{}} -* Make RSS item limit configurable {{}} - -### Enhancements - -* Enhance `.Param` to permit arbitrarily nested parameter references {{}} -* Use `Page.Params` more consistently when adding metadata {{}} -* The `sectionPagesMenu` feature ("Section menu for the lazy blogger") is now integrated with the section content pages. {{}} -* Hugo `0.19` is compiled with Go 1.8! -* Make template funcs like `findRE` and friends more liberal in what argument types they accept {{}} {{}} -* Improve generation of OpenGraph date tags {{}} - -### Notes - -* `sourceRelativeLinks` is now deprecated and will be removed in Hugo `0.21` if no one is stepping up to the plate and fixes and maintains this feature. {{}} - -### Fixes - -* Fix `.Site.LastChange` on sites where the default sort order is not chronological. {{}} -* Fix regression of `.Truncated` evaluation in manual summaries. {{}} -* Fix `preserveTaxonomyNames` regression {{}} -* Fix issue with taxonomies when only some have content page {{}} -* Fix instagram shortcode panic on invalid ID {{}} -* Fix subtle data race in `getJSON` {{}} -* Fix deadlock in cached partials {{}} -* Avoid double-encoding of paginator URLs {{}} -* Allow tilde in URLs {{}} -* Fix `.Site.Pages` handling on live reloads {{}} -* `UniqueID` now correctly uses the fill file path from the content root to calculate the hash, and is finally ... unique! -* Discard current language based on `.Lang()`, go get translations correct for paginated pages. {{}} -* Fix infinite loop in template AST handling for recursive templates {{}} -* Fix issue with watching when config loading fails {{}} -* Correctly flush the imageConfig on live-reload {{}} -* Fix parsing of TOML arrays in front matter {{}} - -### Docs - -* Add tutorial "How to use Google Firebase to host a Hugo site" {{}} -* Improve documentation for menu rendering {{}} -* Revise GitHub Pages deployment tutorial {{}} - -## **0.18.1** December 30th 2016 - -Hugo 0.18.1 is a bug fix release fixing some issues introduced in Hugo 0.18: - -* Fix 32-bit binaries {{}} -* Fix issues with `preserveTaxonomyNames` {{}} -* Fix `.URL` for taxonomy pages when `uglyURLs=true` {{}} -* Fix `IsTranslated` and `Translations` for node pages {{}} -* Make template error messages more verbose {{}} - -## **0.18.0** December 19th 2016 - -Today, we're excited to release the much-anticipated Hugo 0.18! - -We're heading towards the end of the year 2016, and we can look back on three releases and a steady growing community around the project. -This release includes **over 220 contributions by nearly 50 contributors** to the main codebase. -Since the last release, Hugo has **gained 1750 stars and 27 additional themes**. - -Hugo now has: - -- 13750+ stars -- 408+ contributors -- 137+ themes - -{{< gh "@bep" >}} once again took the lead of Hugo and contributed a significant amount of additions. -Also a big shoutout to {{< gh "@digitalcraftsman" >}} for his relentless work on keeping the documentation and the themes site in pristine condition, -and also a big thanks to {{< gh "@moorereason" >}} and {{< gh "@bogem" >}} for their contributions. - -We wish you all a Merry Christmas and a Happy New Year.
-*The Hugo team* - -### Highlights - -The primary new feature in Hugo 0.18 is that every piece of content is now a `Page` ({{}}). This means that every page, including the homepage, can have a content file with front matter. - -Not only is this a much simpler model to understand, it is also faster and paved the way for several important new features: - -* Enable proper titles for Nodes {{}} -* Sitemap.xml should include nodes, as well as pages {{}} -* Document homepage content workaround {{}} -* Allow homepage to be easily authored in markdown {{}} -* Minimalist website with homepage as content {{}} - -Hugo again continues its trend of each release being faster than the last. It's quite a challenge to consistently add significant new functionality and simultaneously dramatically improve performance. Running [this benchmark]( https://github.com/bep/hugo-benchmark) with [these sites](https://github.com/bep/hugo-benchmark/tree/master/sites) (renders to memory) shows about 60% reduction in time spent and 30% reduction in memory usage compared to Hugo 0.17. - -### Other New Features - -* Every `Page` now has a `Kind` property. Since everything is a `Page` now, the `Kind` is used to differentiate different kinds of pages. - Possible values are `page`, `home`, `section`, `taxonomy`, and `taxonomyTerm`. - (Internally, we also define `RSS`, `sitemap`, `robotsTXT`, and `404`, but those have no practical use for end users at the moment since they are not included in any collections.) -* Add a `GitInfo` object to `Page` if `enableGitInfo` is set. It then also sets `Lastmod` for the given `Page` to the author date provided by Git. {{}} -* Implement support for alias templates {{}} -* New template functions: - * Add `imageConfig` function {{}} - * Add `sha256` function {{}} - * Add `partialCached` template function {{}} -* Add shortcode to display Instagram images {{}} -* Add `noChmod` option to disable perm sync {{}} -* Add `quiet` build mode {{}} - - -### Notices - -* `.Site.Pages` will now contain *several kinds of pages*, including regular pages, sections, taxonomies, and the homepage. - If you want a specific kind of page, you can filter it with `where` and `Kind`. - `.Site.RegularPages` is a shortcut to the page collection you have been used to getting. -* `RSSlink` is now deprecated. Use `RSSLink` instead. - Note that in Hugo 0.17 both of them existed, so there is a fifty-fifty chance you will not have to do anything - (if you use a theme, the chance is close to 0), and `RSSlink` will still work for two Hugo versions. - -### Fixes - -* Revise the `base` template lookup logic so it now better matches the behavior of regular templates, making it easier to override the master templates from the theme {{}} -* Add workaround for `block` template crash. - Block templates are very useful, but there is a bug in Go 1.6 and 1.7 which makes the template rendering crash if you use the block template in more complex scenarios. - This is fixed in the upcoming Go 1.8, but Hugo adds a temporary workaround in Hugo 0.18. {{}} -* All the `Params` configurations are now case insensitive {{}} {{}} {{}} -* Make RawContent raw again {{}} -* Fix archetype title and date handling {{}} -* Fix TOML archetype parsing in `hugo new` {{}} -* Fix page sorting when weight is zero {{}} -* Fix page names that contain dot {{}} -* Fix RSS Title regression {{}} -* Handle ToC before handling shortcodes {{}} -* Only watch relevant themes dir {{}} -* Hugo new content creates TOML slices with closing bracket on new line {{}} - -### Improvements - -* Add page information to error logging in rendering {{}} -* Deprecate `RSSlink` in favor of `RSSLink` -* Make benchmark command more useful {{}} -* Consolidate the `Param` methods {{}} -* Allow to set cache dir in config file -* Performance improvements: - * Avoid repeated Viper loads of `sectionPagesMenu` {{}} - * Avoid reading from Viper for path and URL funcs {{}} - * Add `partialCached` template function. This can be a significant performance boost if you have complex partials that does not need to be rerendered for every page. {{}} - -### Documentation Updates - -* Update roadmap {{}} -* Update multilingual example {{}} -* Add a "Deployment with rsync" tutorial page {{}} -* Refactor `/docs` to use the `block` keyword {{}} - - -## **0.17.0** October 7th 2016 - -Hugo is going global with our 0.17 release. We put a lot of thought into how we could extend Hugo -to support multilingual websites with the most simple and elegant experience. Hugo's multilingual -capabilities rival the best web and documentation software, but Hugo's experience is unmatched. -If you have a single language website, the simple Hugo experience you already love is unchanged. -Adding additional languages to your website is simple and straightforward. Hugo has been completely -internally rewritten to be multilingual aware with translation and internationalization features -embedded throughout Hugo. - -Hugo continues its trend of each release being faster than the last. It's quite a challenge to consistently add -significant new functionality and simultaneously dramatically improve performance. {{}} has made it -his personal mission to apply the Go mantra of "Enable more. Do less" to Hugo. Hugo's consistent improvement -is a testament to his brilliance and his dedication to his craft. Hugo additionally benefits from the -performance improvements from the Go team in the Go 1.7 release. - -This release represents **over 300 contributions by over 70 contributors** to -the main Hugo code base. Since last release Hugo has **gained 2000 stars, 50 new -contributors and 20 additional themes.** - -Hugo now has: - -* 12,000 stars on GitHub -* 370+ contributors -* 110+ themes - -{{}} continues to lead the project with the lionshare of contributions -and reviews. A special thanks to {{}} and {{}} for their -considerable work on multilingual support. - -A big welcome to newcomers {{}}, {{}} and -{{}} for their critical contributions. - -### Highlights - -**Multilingual Support:** -Hugo now supports multiple languages side-by-side. A single site can now have multiple languages rendered with -full support for translation and i18n. - -**Performance:** -Hugo is faster than ever! Hugo 0.17 is not only our fastest release, it's also the most efficient. -Hugo 0.17 is **nearly twice as fast as Hugo 0.16** and uses about 10% less memory. -This means that the same site will build in nearly half the time it took with Hugo 0.16. -For the first time Hugo sites are averaging well under 1ms per rendered content. - -**Docs overhaul:** -This release really focused on improving the documentation. [Gohugo.io](http://gohugo.io) is -more accurate and complete than ever. - -**Support for macOS Sierra** - -### New Features -* Multilingual support {{}} -* Allow content expiration {{}} -* New templates functions: - * `querify` function to generate query strings inside templates {{}} - * `htmlEscape` and `htmlUnescape` template functions {{}} - * `time` converts a timestamp string into a time.Time structure {{}} - -### Enhancements - -* Render the shortcodes as late as possible {{}} -* Remove unneeded casts in page.getParam {{}} -* Automatic page date fallback {{}} -* Enable safeHTMLAttr {{}} -* Add TODO list support for markdown {{}} -* Make absURL and relURL accept any type {{}} -* Suppress 'missing static' error {{}} -* Make summary, wordcount etc. more efficient {{}} -* Better error reporting in `hugo convert` {{}} -* Reproducible builds thanks to govendor {{}} - -### Fixes - -* Fix shortcode in markdown headers {{}} -* Explicitly bind livereload to hugo server port {{}} -* Fix Emojify for certain text patterns {{}} -* Normalize file name to NFC {{}} -* Ignore emacs temp files {{}} -* Handle symlink change event {{}} -* Fix panic when using URLize {{}} -* `hugo import jekyll`: Fixed target path location check {{}} -* Return all errors from casting in templates {{}} -* Fix paginator counter on x86-32 {{}} -* Fix half-broken self-closing shortcodes {{}} - -**** - -## **0.16.0** June 6th 2016 - -Hugo 0.16 is our best and biggest release ever. The Hugo community has -outdone itself with continued performance improvements, -[beautiful themes](http://themes.gohugo.io) for all types of sites from project -sites to documentation to blogs to portfolios, and increased stability. - -This release represents **over 550 contributions by over 110 contributors** to -the main Hugo code base. Since last release Hugo has **gained 3500 stars, 90 -contributors and 23 additional themes.** - -This release celebrates 3 years since {{< gh "@spf13" >}} wrote the first lines -of Hugo. During those 3 years Hugo has accomplished some major milestones -including... - -* 10,000+ stars on GitHub -* 320+ contributors -* 90+ themes -* 1000s of happy websites -* Many subprojects like {{< gh "@spf13/cobra">}}, {{< gh "@spf13/viper">}} and - {{< gh "@spf13/afero">}} which have experienced broad usage across the Go - ecosystem. - -{{< gh "@bep" >}} led the development of Hugo for the 3rd consecutive release -with nearly half of the contributions to 0.16 in addition to his considerable -contributions as lead maintainer. {{< gh "@anthonyfok" >}}, {{< gh -"@DigitalCraftsman" >}}, {{< gh "@MooreReason" >}} all made significant -contributions. A special thanks to {{< gh "@abourget" >}} for his considerable -work on multilingual support. Due to its broad impact we wanted to spend more -time testing it and it will be included in Hugo's next release. - -### Highlights - -**Partial Builds:** Prior to this release Hugo would always reread and rebuild -the entire site. This release introduces support for reactive site building -while watching (`hugo server`). Hugo will watch the filesystem for changes and -only re-read the changed files. Depending on the files change Hugo will -intelligently re-render only the needed portion of the site. Performance gains -depend on the operation performed and size of the site. In our testing build -times decreased anywhere from 10% to 99%. - -**Template Improvements:** Template improvements continue to be a mainstay of each Hugo release. Hugo 0.16 adds support for the new `block` keyword introduced in Go 1.6 -- think base templates with default sections -- as well as many new template functions. - -**Polish:** As Hugo matures releases will inevitably contain fewer huge new features. This release represents hundreds of small improvements across ever facet of Hugo which will make for a much better experience for all of our users. Worth mentioning here is the curious bug where live reloading didn't work in some editors on OS X, including the popular TextMate 2. This is now fixed. Oh, and now any error will exit with an error code, a big thing for automated deployments. - -### New Features -* Support reading configuration variables from the OS environment {{}} -* Add emoji support {{}} -* Add `themesDir` option to configuration {{}} -* Add support for Go 1.6 `block` keyword in templates {{}} -* Partial static sync {{}} -* Source file based relative linking (à la GitHub) {{}} -* Add `ByLastmod` sort function to pages. {{}} -* New templates functions: - * `readFile` {{}} - * `countwords` and `countrunes` {{}} - * `default` {{}} - * `hasPrefix` {{}} - * `humanize` {{}} - * `jsonify` {{}} - * `md5` and `sha1` {{}} - * `replaceRE` {{}} - * `findRE` {{}} - * `shuffle` {{}} - * `slice` {{}} - * `plainify` {{}} - -### Enhancements - -* Hugo now exits with error code on any error. This is a big thing for - automated deployments. {{}} -* Print error when `/index.html` is zero-length {{}} -* Enable dirname and filename bash autocompletion for more flags {{}} -* Improve error handling in commands {{}} -* Add sanity checks for `hugo import jekyll` {{}} -* Add description to `Page.Params` {{}} -* Add async version of Google Analytics internal template {{}} -* Add autostart option to YouTube shortcode {{}} -* Set Date and Lastmod for main homepage {{}} -* Allow URL with extension in front matter {{}} -* Add list support in Scratch {{}} -* Add file option to gist shortcode {{}} -* Add config layout and content directory CLI options {{}} -* Add boolean value comparison to `where` template function {{}} -* Do not write to to cache when `ignoreCache` is set {{}} -* Add option to disable rendering of 404 page {{}} -* Mercurial is no longer needed to build Hugo {{}} -* Do not create `robots.txt` by default {{}} -* Disable syntax guessing for PygmentsCodeFences by default. To enable syntax - guessing again, add the following to your config file: - `PygmentsCodeFencesGuessSyntax = true` {{}} -* Make `ByCount` sort consistently {{}} -* Add `Scratch` to shortcode {{}} -* Add support for symbolic links for content, layout, static, theme {{}} -* Add '+' as one of the valid characters in URLs specified in the front matter - {{}} -* Make alias redirect output URLs relative when `RelativeURLs = true` {{}} -* Hugo injects meta generator tag on homepage if missing {{}} - -### Fixes -* Fix file change watcher for TextMate 2 and friends on OS X {{}} -* Make dynamic reloading of config file reliable on all platform {{}} -* Hugo now works on Linux/arm64 {{}} -* `plainIDAnchors` now defaults to `true` {{}} -* Win32 and ARM builds fixed {{}} -* Copy static dir files without theme's static dir {{}} -* Make `noTimes` command flag work {{}} -* Change most global CLI flags into local ones {{}} -* Remove transformation of menu URLs {{}} -* Do not fail on unknown Jekyll file {{}} -* Use absolute path when editing with editor {{}} -* Fix hugo server "Watching for changes" path display {{}} -* Do not strip special characters out of URLs {{}} -* Fix `RSSLink` when uglyURLs are enabled {{}} -* Get BaseURL from viper in server mode {{}} -* Fix shortcode handling in RST {{}} -* Use default sitemap configuration for homepage {{}} -* Exit if specific port is unavailable in server mode {{}} -* Fix regression in "section menus for lazy blogger" {{}} - -**** - -## **0.15.0** November 25, 2015 - -The v0.15.0 Hugo release brings a lot of polish to Hugo. Exactly 6 months after -the 0.14 release, Hugo has seen massive growth and changes. Most notably, this -is Hugo's first release under the Apache 2.0 license. With this license change -we hope to expand the great community around Hugo and make it easier for our -many users to contribute. This release represents over **377 contributions by -87 contributors** to the main Hugo repo and hundreds of improvements to the -libraries Hugo uses. Hugo also launched a [new theme -showcase](http://themes.gohugo.io) and participated in -[Hacktoberfest](https://hacktoberfest.digitalocean.com). - -Hugo now has: - -* 6700 (+2700) stars on GitHub -* 235 (+75) contributors -* 65 (+30) themes - - -**Template Improvements:** This release takes Hugo to a new level of speed and -usability. Considerable work has been done adding features and performance to -the template system which now has full support of Ace, Amber and Go Templates. - -**Hugo Import:** Have a Jekyll site, but dreaming of porting it to Hugo? This -release introduces a new `hugo import jekyll`command that makes this easier -than ever. - -**Performance Improvements:** Just when you thought Hugo couldn't get any faster, -Hugo continues to improve in speed while adding features. Notably Hugo 0.15 -introduces the ability to render and serve directly from memory resulting in -30%+ lower render times. - -Huge thanks to all who participated in this release. A special thanks to -{{< gh "@bep" >}} who led the development of Hugo this release again, -{{< gh "@anthonyfok" >}}, -{{< gh "@eparis" >}}, -{{< gh "@tatsushid" >}} and -{{< gh "@DigitalCraftsman" >}}. - - -### New features -* new `hugo import jekyll` command. {{< gh 1469 >}} -* The new `Param` convenience method on `Page` and `Node` can be used to get the most specific parameter value for a given key. {{< gh 1462 >}} -* Several new information elements have been added to `Page` and `Node`: - * `RuneCount`: The number of [runes](http://blog.golang.org/strings) in the content, excluding any whitespace. This may be a good alternative to `.WordCount` for Japanese and other CJK languages where a word-split by spaces makes no sense. {{< gh 1266 >}} - * `RawContent`: Raw Markdown as a string. One use case may be of embedding remarkjs.com slides. - * `IsHome`: tells the truth about whether you're on the homepage or not. - -### Improvements -* `hugo server` now builds ~30%+ faster by rendering to memory instead of disk. To get the old behavior, start the server with `--renderToDisk=true`. -* Hugo now supports dynamic reloading of the config file when watching. -* We now use a custom-built `LazyFileReader` for reading file contents, which means we don't read media files in `/content` into memory anymore -- and file reading is now performed in parallel on multicore PCs. {{< gh 1181 >}} -* Hugo is now built with `Go 1.5` which, among many other improvements, have fixed the last known data race in Hugo. {{< gh 917 >}} -* Paginator now also supports page groups. {{< gh 1274 >}} -* Markdown improvements: - * Hugo now supports GitHub-flavoured markdown code fences for highlighting for `md`-files (Blackfriday rendered markdown) and `mmark` files (MMark rendered markdown). {{< gh 362 1258 >}} - * Several new Blackfriday options are added: - * Option to disable Blackfriday's `Smartypants`. - * Option for Blackfriday to open links in a new window/tab. {{< gh 1220 >}} - * Option to disable Blackfriday's LaTeX style dashes {{< gh 1231 >}} - * Definition lists extension support. -* `Scratch` now has built-in `map` support. -* We now fall back to `link title` for the default page sort. {{< gh 1299 >}} -* Some notable new configuration options: - * `IgnoreFiles` can be set with a list of Regular Expressions that matches files to be ignored during build. {{< gh 1189 >}} - * `PreserveTaxonomyNames`, when set to `true`, will preserve what you type as the taxonomy name both in the folders created and the taxonomy `key`, but it will be normalized for the URL. {{< gh 1180 >}} -* `hugo gen` can now generate man files, bash auto complete and markdown documentation -* Hugo will now make suggestions when a command is mistyped -* Shortcodes now have a boolean `.IsNamedParams` property. {{< gh 1597 >}} - -### New Template Features -* All template engines: - * The new `dict` function that could be used to pass maps into a template. {{< gh 1463 >}} - * The new `pluralize` and `singularize` template funcs. - * The new `base64Decode` and `base64Encode` template funcs. - * The `sort` template func now accepts field/key chaining arguments and pointer values. {{< gh 1330 >}} - * Several fixes for `slicestr` and `substr`, most importantly, they now have full `utf-8`-support. {{< gh 1190 1333 1347 >}} - * The new `last` template function allows the user to select the last `N` items of a slice. {{< gh 1148 >}} - * The new `after` func allows the user to select the items after the `Nth` item. {{< gh 1200 >}} - * Add `time.Time` type support to the `where`, `ge`, `gt`, `le`, and `lt` template functions. - * It is now possible to use constructs like `where Values ".Param.key" nil` to filter pages that doesn't have a particular parameter. {{< gh 1232 >}} - * `getJSON`/`getCSV`: Add retry on invalid content. {{< gh 1166 >}} - * The new `readDir` func lists local files. {{< gh 1204 >}} - * The new `safeJS` function allows the embedding of content into JavaScript contexts in Go templates. - * Get the main site RSS link from any page by accessing the `.Site.RSSLink` property. {{< gh 1566 >}} -* Ace templates: - * Base templates now also works in themes. {{< gh 1215 >}}. - * And now also on Windows. {{< gh 1178 >}} -* Full support for Amber templates including all template functions. -* A built-in template for Google Analytics. {{< gh 1505 >}} -* Hugo is now shipped with new built-in shortcodes: {{< gh 1576 >}} - * `youtube` for YouTube videos - * `vimeo` for Vimeo videos - * `gist` for GitHub gists - * `tweet` for Twitter Tweets - * `speakerdeck` for Speakerdeck slides - - -### Bugfixes -* Fix data races in page sorting and page reversal. These operations are now also cached. {{< gh 1293 >}} -* `page.HasMenuCurrent()` and `node.HasMenuCurrent()` now work correctly in multi-level nested menus. -* Support `Fish and Chips` style section titles. Previously, this would end up as `Fish And Chips`. Now, the first character is made toupper, but the rest are preserved as-is. {{< gh 1176 >}} -* Hugo now removes superfluous p-tags around shortcodes. {{< gh 1148 >}} - -### Notices -* `hugo server` will watch by default now. -* Some fields and methods were deprecated in `0.14`. These are now removed, so the error message isn't as friendly if you still use the old values. So please change: - * `getJson` to `getJSON`, `getCsv` to `getCSV`, `safeHtml` to - `safeHTML`, `safeCss` to `safeCSS`, `safeUrl` to `safeURL`, `Url` to `URL`, - `UrlPath` to `URLPath`, `BaseUrl` to `BaseURL`, `Recent` to `Pages`. - -### Known Issues - -Using the Hugo v0.15 32-bit Windows or ARM binary, running `hugo server` would crash or hang due to a [memory alignment issue](https://golang.org/pkg/sync/atomic/#pkg-note-BUG) in [Afero](https://github.com/spf13/afero). The bug was discovered shortly after the v0.15.0 release and has since been [fixed](https://github.com/spf13/afero/pull/23) by {{< gh "@tpng" >}}. If you encounter this bug, you may either compile Hugo v0.16-DEV from source, or use the following solution/workaround: - -* **64-bit Windows users: Please use [hugo_0.15_windows_amd64.zip](https://github.com/gohugoio/hugo/releases/download/v0.15/hugo_0.15_windows_amd64.zip)** (amd64 == x86-64). It is only the 32-bit hugo_0.15_windows_386.zip that crashes/hangs (see {{< gh 1621 >}} and {{< gh 1628 >}}). -* **32-bit Windows and ARM users: Please run `hugo server --renderToDisk` as a workaround** until Hugo v0.16 is released (see [“hugo server” returns runtime error on armhf](https://discourse.gohugo.io/t/hugo-server-returns-runtime-error-on-armhf/2293) and {{< gh 1716 >}}). - ----- - -## **0.14.0** May 25, 2015 - -The v0.14.0 Hugo release brings of the most demanded features to Hugo. The -foundation of Hugo is stabilizing nicely and a lot of polish has been added. -We’ve expanded support for additional content types with support for AsciiDoc, -Restructured Text, HTML and Markdown. Some of these types depend on external -libraries as there does not currently exist native support in Go. We’ve tried -to make the experience as seamless as possible. Look for more improvements here -in upcoming releases. - -A lot of work has been done to improve the user experience, with extra polish -to the Windows experience. Hugo errors are more helpful overall and Hugo now -can detect if it’s being run in Windows Explorer and provide additional -instructions to run it via the command prompt. - -The Hugo community continues to grow. Hugo has over 4000 stars on github, 165 -contributors, 35 themes and 1000s of happy users. It is now the 5th most -popular static site generator (by Stars) and has the 3rd largest contributor -community. - -This release represents over **240 contributions by 36 contributors** to the main -Hugo codebase. - -Big shout out to {{< gh "@bep" >}} who led the development of Hugo -this release, {{< gh "@anthonyfok" >}}, -{{< gh "@eparis" >}}, -{{< gh "@SchumacherFM" >}}, -{{< gh "@RickCogley" >}} & -{{< gh "@mdhender" >}} for their significant contributions -and {{< gh "@tatsushid" >}} for his continuous improvements -to the templates. Also a big thanks to all the theme creators. 11 new themes -have been added since last release and the [hugoThemes repo now has previews of -all of -them](https://github.com/gohugoio/hugoThemes/blob/master/README.md#theme-list). - -Hugo also depends on a lot of other great projects. A big thanks to all of our dependencies including: -[cobra](https://github.com/spf13/cobra), -[viper](https://github.com/spf13/viper), -[blackfriday](https://github.com/russross/blackfriday), -[pflag](https://github.com/spf13/pflag), -[HugoThemes](https://github.com/gohugoio/hugothemes), -[BurntSushi](https://github.com/BurntSushi/toml), -[goYaml](https://github.com/go-yaml/yaml/tree/v2), and the Go standard library. - -### New features - -* Support for all file types in content directory. - * If dedicated file type handler isn’t found it will be copied to the destination. -* Add `AsciiDoc` support using external helpers. -* Add experimental support for [`Mmark`](https://github.com/miekg/mmark) markdown processor -* Bash autocomplete support via `genautocomplete` command -* Add section menu support for a [Section Menu for "the Lazy Blogger"](/templates/menu-templates/) -* Add support for `Ace` base templates -* Adding `RelativeURLs = true` to site config will now make all the relative URLs relative to the content root. -* New template functions: - * `getenv` - * The string functions `substr` and `slicestr` - * `seq`, a sequence generator very similar to its Gnu counterpart - * `absURL` and `relURL`, both of which takes the `BaseURL` setting into account - -### Improvements - -* Highlighting with `Pygments` is now cached to disk -- expect a major speed boost if you use it! -* More Pygments highlighting options, including `line numbers` -* Show help information to Windows users who try to double click on `hugo.exe`. -* Add `bind` flag to `hugo server` to set the interface to which the server will bind -* Add support for `canonifyURLs` in `srcset` -* Add shortcode support for HTML (content) files -* Allow the same `shortcode` to be used with or without inline content -* Configurable RSS output filename - -### Bugfixes - -* Fix panic with paginator and zero pages in result set. -* Fix crossrefs on Windows. -* Fix `eq` and `ne` template functions when used with a raw number combined with the result of `add`, `sub` etc. -* Fix paginator with uglyURLs -* Fix {{< gh 998 >}}, supporting UTF8 characters in Permalinks. - -### Notices - -* To get variable and function names in line with the rest of the Go community, - a set of variable and function names has been deprecated: These will still - work in 0.14, but will be removed in 0.15. What to do should be obvious by - the build log; `getJson` to `getJSON`, `getCsv` to `getCSV`, `safeHtml` to - `safeHTML`, `safeCss` to `safeCSS`, `safeUrl` to `safeURL`, `Url` to `URL`, - `UrlPath` to `URLPath`, `BaseUrl` to `BaseURL`, `Recent` to `Pages`, - `Indexes` to `Taxonomies`. - - ----- - -## **0.13.0** Feb 21, 2015 - -The v0.13.0 release is the largest Hugo release to date. The release introduced -some long sought after features (pagination, sequencing, data loading, tons of -template improvements) as well as major internal improvements. In addition to -the code changes, the Hugo community has grown significantly and now has over -3000 stars on github, 134 contributors, 24 themes and 1000s of happy users. - -This release represents **448 contributions by 65 contributors** - -A special shout out to {{< gh "@bep" >}} and -{{< gh "@anthonyfok" >}} for their new role as Hugo -maintainers and their tremendous contributions this release. - -### New major features -* Support for [data files](/templates/data-templates/) in [YAML](http://yaml.org/), - [JSON](http://www.json.org/), or [TOML](https://github.com/toml-lang/toml) - located in the `data` directory ({{< gh 885 >}}) -* Support for [dynamic content](/templates/data-templates/) by loading JSON & CSV - from remote sources via GetJson and GetCsv in short codes or other layout - files ({{< gh 748 >}}) -* [Pagination support](/templates/pagination/) for homepage, sections and - taxonomies ({{< gh 750 >}}) -* Universal sequencing support - * A new, generic Next/Prev functionality is added to all lists of pages - (sections, taxonomies, etc.) - * Add in-section [Next/Prev](/variables/) content pointers -* `Scratch` -- [a "scratchpad"](/functions/scratch/) for your node- and page-scoped - variables -* [Cross Reference](/content-management/cross-references/) support to easily link documents - together with the ref and relref shortcodes. -* [Ace](https://github.com/yosssi/ace) template engine support ({{< gh 541 >}}) -* A new [shortcode](/content-management/shortcodes/) token of `{{}}` (raw HTML) - alongside the existing `{{%/* */%}}` (Markdown) -* A top level `Hugo` variable (on Page & Node) is added with various build - information -* Several new ways to order and group content: - * `ByPublishDate` - * `GroupByPublishDate(format, order)` - * `GroupByParam(key, order)` - * `GroupByParamDate(key, format, order)` -* Hugo has undergone a major refactoring, with a new handler system and a - generic file system. This sounds and is technical, but will pave the way for - new features and make Hugo even speedier - -### Notable enhancements to existing features - -* The [shortcode](/content-management/shortcodes/) handling is rewritten for speed and - better error messages. -* Several improvements to the [template functions](/functions/): - * [`where`](/functions/where/) is now even more powerful and accepts SQL-like syntax with the - operators `==`, `eq`; `!=`, `<>`, `ne`; `>=`, `ge`; `>`, `gt`; `<=`, - `le`; `<`, `lt`; `in`, `not in` - * `where` template function now also accepts dot chaining key argument - (e.g. `"Params.foo.bar"`) -* New template functions: - * `apply` - * `chomp` - * `delimit` - * `sort` - * `markdownify` - * `in` and `intersect` - * `trim` - * `replace` - * `dateFormat` -* Several [configurable improvements related to Markdown - rendering](/getting-started/configuration/): - * Configuration of footnote rendering - * Optional support for smart angled quotes, e.g. `"Hugo"` → «Hugo» - * Enable descriptive header IDs -* URLs in XML output is now correctly canonified ({{< gh 725 728 >}}, and part - of {{< gh 789 >}}) - -### Other improvements - -* Internal change to use byte buffer pool significantly lowering memory usage - and providing measurable performance improvements overall -* Changes to docs: - * A new [Troubleshooting](/troubleshooting/) section is added - * It's now searchable through Google Custom Search ({{< gh 753 >}}) - * Some new great tutorials: - * [Automated deployments with - Wercker](/tutorials/automated-deployments/) - * [Creating a new theme](/tutorials/creating-a-new-theme/) -* [`hugo new`](/content-management/archetypes/) now copies the content in addition to the front matter -* Improved unit test coverage -* Fixed a lot of Windows-related path issues -* Improved error messages for template and rendering errors -* Enabled soft LiveReload of CSS and images ({{< gh 490 >}}) -* Various fixes in RSS feed generation ({{< gh 789 >}}) -* `HasMenuCurrent` and `IsMenuCurrent` is now supported on Nodes -* A bunch of [bug fixes](https://github.com/gohugoio/hugo/commits/master) - ----- - -## **0.12.0** Sept 1, 2014 - -A lot has happened since Hugo v0.11.0 was released. Most of the work has been -focused on polishing the theme engine and adding critical functionality to the -templates. - -This release represents over 90 code commits from 28 different contributors. - - * 10 [new themes](https://github.com/gohugoio/hugoThemes) created by the community - * Fully themable [Partials](/templates/partials/) - * [404 template](/templates/404/) support in themes - * [Shortcode](/content-management/shortcodes/) support in themes - * [Views](/templates/views/) support in themes - * Inner [shortcode](/content-management/shortcodes/) content now treated as Markdown - * Support for header ids in Markdown (# Header {#myid}) - * [Where](/templates/lists/) template function to filter lists of content, taxonomies, etc. - * [GroupBy](/templates/lists/) & [GroupByDate](/templates/list/) methods to group pages - * Taxonomy [pages list](/templates/taxonomy-templates/) now sortable, filterable, limitable & groupable - * General cleanup to taxonomies & documentation to make it more clear and consistent - * [Showcase](/showcase/) returned and has been expanded - * Pretty links now always have trailing slashes - * [BaseUrl](/getting-started/configuration/) can now include a subdirectory - * Better feedback about draft & future post rendering - * A variety of improvements to [the website](http://gohugo.io/) - ----- - -## **0.11.0** May 28, 2014 - -This release represents over 110 code commits from 29 different contributors. - - * Considerably faster... about 3 - 4x faster on average - * [LiveReload](/getting-started/usage/). Hugo will automatically reload the browser when the build is complete - * Theme engine w/[Theme Repository](https://github.com/gohugoio/hugoThemes) - * [Menu system](/content-management/menus/) with support for active page - * [Builders](/getting-started/usage/) to quickly create a new site, content or theme - * [XML sitemap](/templates/sitemap-template/) generation - * [Integrated Disqus](/content-management/comments/) support - * Streamlined [template organization](/templates/) - * [Brand new docs site](http://gohugo.io/) - * Support for publishDate which allows for posts to be dated in the future - * More [sort](/templates/lists/) options - * Logging support - * Much better error handling - * More informative verbose output - * Renamed Indexes > [Taxonomies](/content-management/taxonomies/) - * Renamed Chrome > [Partials](/templates/partials/) - ----- - -## **0.10.0** March 1, 2014 - -This release represents over 110 code commits from 29 different contributors. - - * [Syntax highlighting](/tools/syntax-highlighting/) powered by pygments (**slow**) - * Ability to [sort content](/templates/lists/) many more ways - * Automatic [table of contents](/content-management/toc/) generation - * Support for Unicode URLs, aliases and indexes - * Configurable per-section [permalink](/content-management/urls/) pattern support - * Support for [paired shortcodes](/content-management/shortcodes/) - * Shipping with some [shortcodes](/content-management/shortcodes/) (highlight & figure) - * Adding [canonify](/content-management/urls/) option to keep urls relative - * A bunch of [additional template functions](/functions/) - * Watching very large sites now works on Mac - * RSS generation improved. Limited to 50 items by default, can limit further in [template](/templates/rss/) - * Boolean params now supported in [fm](/content-management/front-matter/) - * Launched website [showcase](/showcase/). Show off your own hugo site! - * A bunch of [bug fixes](https://github.com/gohugoio/hugo/commits/master) - ----- - -## **0.9.0** November 15, 2013 - -This release represents over 220 code commits from 22 different contributors. - - * New [command based interface](/getting-started/usage/) similar to git (`hugo server -s ./`) - * Amber template support - * [Aliases](/content-management/urls/) (redirects) - * Support for top level pages (in addition to homepage) - * Complete overhaul of the documentation site - * Full Windows support - * Better index support including [ordering by content weight](/templates/lists/) - * Add params to site config, available in .Site.Params from templates - * Friendlier JSON support - * Support for html & xml content (with front matter support) - * Support for [summary](/content-management/summaries/) content divider (<!--more-->) - * HTML in [summary](/content-management/summaries/) (when using divider) - * Added ["Minutes to Read"](/variables/) functionality - * Support for a custom 404 page - * Cleanup of how content organization is handled - * Loads of unit and performance tests - * Integration with travis ci - * Static directory now watched and copied on any addition or modification - * Support for relative permalinks - * Fixed watching being triggered multiple times for the same event - * Watch now ignores temp files (as created by Vim) - * Configurable number of posts on [homepage](/templates/homepage/) - * [Front matter](/content-management/front-matter/) supports multiple types (int, string, date, float) - * Indexes can now use a default template - * Addition of truncated bool to content to determine if should show 'more' link - * Support for [linkTitles](/variables/) - * Better handling of most errors with directions on how to resolve - * Support for more date / time formats - * Support for go 1.2 - * Support for `first` in templates - ----- - -## **0.8.0** August 2, 2013 - -This release represents over 65 code commits from 6 different contributors. - -* Added support for pretty urls (filename/index.html vs filename.html) -* Hugo supports a destination directory -* Will efficiently sync content in static to destination directory -* Cleaned up options.. now with support for short and long options -* Added support for TOML -* Added support for YAML -* Added support for Previous & Next -* Added support for indexes for the indexes -* Better Windows compatibility -* Support for series -* Adding verbose output -* Loads of bugfixes - ----- - -## **0.7.0** July 4, 2013 - -* Hugo now includes a simple server -* First public release - ----- - -## **0.6.0** July 2, 2013 - -* Hugo includes an example documentation site which it builds - ----- - -## **0.5.0** June 25, 2013 - * Hugo is quite usable and able to build spf13.com diff --git a/content/templates/data-templates.md b/content/templates/data-templates.md index b7500809a..e75acec4c 100644 --- a/content/templates/data-templates.md +++ b/content/templates/data-templates.md @@ -26,7 +26,7 @@ Hugo supports loading data from YAML, JSON, and TOML files located in the `data` The `data` folder is where you can store additional data for Hugo to use when generating your site. Data files aren't used to generate standalone pages; rather, they're meant to be supplemental to content files. This feature can extend the content in case your front matter fields grow out of control. Or perhaps you want to show a larger dataset in a template (see example below). In both cases, it's a good idea to outsource the data in their own files. -These files must be YAML, JSON, or TOML files (using the `.yml`, `.yaml`, `.json`, or `toml` extension). The data will be accessible as a `map` in the `.Site.Data` variable. +These files must be YAML, JSON, or TOML files (using the `.yml`, `.yaml`, `.json`, or `.toml` extension). The data will be accessible as a `map` in the `.Site.Data` variable. ## Data Files in Themes @@ -250,4 +250,4 @@ If you change any local file and the LiveReload is triggered, Hugo will read the [toml]: https://github.com/toml-lang/toml [variadic]: http://en.wikipedia.org/wiki/Variadic_function [vars]: /variables/ -[yaml]: http://yaml.org/spec/ \ No newline at end of file +[yaml]: http://yaml.org/spec/ diff --git a/content/templates/lists.md b/content/templates/lists.md index 8eeb2d271..0e81d454c 100644 --- a/content/templates/lists.md +++ b/content/templates/lists.md @@ -100,14 +100,14 @@ You can now access this `_index.md`'s' content in your list template:

{{.Title}}

- + {{.Content}} diff --git a/content/templates/menu-templates.md b/content/templates/menu-templates.md index eb300afe7..30a1305e8 100644 --- a/content/templates/menu-templates.md +++ b/content/templates/menu-templates.md @@ -69,10 +69,10 @@ Use the [`absLangUrl`](/functions/abslangurl) or [`relLangUrl`](/functions/rella ## Section Menu for Lazy Bloggers -To enable this menu, add the following to your site `config`: +To enable this menu, configure `sectionPagesMenu` in your site `config`: ``` -SectionPagesMenu = "main" +sectionPagesMenu = "main" ``` The menu name can be anything, but take a note of what it is. diff --git a/content/templates/taxonomy-templates.md b/content/templates/taxonomy-templates.md index a13e2f2ec..22fb0d053 100644 --- a/content/templates/taxonomy-templates.md +++ b/content/templates/taxonomy-templates.md @@ -25,8 +25,8 @@ Hugo includes support for user-defined groupings of content called **taxonomies* Hugo provides multiple ways to use taxonomies throughout your project templates: -* Order the way the terms for a taxonomy are displayed in a [taxonomy terms template](#taxonomy-terms-template) * Order the way content associated with a taxonomy term is displayed in a [taxonomy list template](#taxonomy-list-template) +* Order the way the terms for a taxonomy are displayed in a [taxonomy terms template](#taxonomy-terms-template) * List a single content's taxonomy terms within a [single page template][] ## Taxonomy List Templates diff --git a/content/themes/creating.md b/content/themes/creating.md index 52edaeae9..d6477f00d 100644 --- a/content/themes/creating.md +++ b/content/themes/creating.md @@ -31,7 +31,7 @@ hugo new theme [name] ## Theme Components -A theme consists of templates and static assets such as javascript and css files. Themes can also provide [archetypes][], which are archetypal content types used by the `hugo new` command to scaffold new conte files with preconfigured front matter. +A theme consists of templates and static assets such as javascript and css files. Themes can also provide [archetypes][], which are archetypal content types used by the `hugo new` command to scaffold new content files with preconfigured front matter. {{% note "Use the Hugo Generator Tag" %}} diff --git a/content/tools/syntax-highlighting.md b/content/tools/syntax-highlighting.md index 1cb7ec6c0..e6fb4de82 100644 --- a/content/tools/syntax-highlighting.md +++ b/content/tools/syntax-highlighting.md @@ -63,8 +63,7 @@ Highlighting is carried out via the [built-in shortcode](/content-management/sho ### Example `highlight` Shortcode Output -{{% output file="example-highlight-shortcode-output.html" %}} -``` +{{< output file="example-highlight-shortcode-output.html" >}} <section id="main"> <div> <h1 id="title">{{ .Title }}</h1> @@ -73,8 +72,7 @@ Highlighting is carried out via the [built-in shortcode](/content-management/sho {{ end }} </div> </section> -``` -{{% /output %}} +{{< /output >}} ### Options diff --git a/content/variables/page.md b/content/variables/page.md index 49def75bf..c8f855d60 100644 --- a/content/variables/page.md +++ b/content/variables/page.md @@ -213,12 +213,10 @@ Two common situations where this type of front matter field could be introduced This template would render as follows, assuming you've set [`uglyURLs`](/content-management/urls/) to `false` in your [site `config`](/getting-started/configuration/): -{{% output file="yourbaseurl/review/book01/index.html" %}} -``` +{{< output file="yourbaseurl/review/book01/index.html" >}}

Buy this book

It was recommended by my Mother.

-``` -{{% /output %}} +{{< /output >}} {{% note %}} See [Archetypes](/content-management/archetypes/) for consistency of `Params` across pieces of content. diff --git a/data/docs.json b/data/docs.json index 90edb9bc8..a230df650 100644 --- a/data/docs.json +++ b/data/docs.json @@ -193,6 +193,16 @@ "layouts/_default/list.html" ] }, + { + "Example": "RSS home, no theme.", + "OutputFormat": "RSS", + "Suffix": "xml", + "Template Lookup Order": [ + "layouts/rss.xml", + "layouts/_default/rss.xml", + "layouts/_internal/_default/rss.xml" + ] + }, { "Example": "JSON home, no theme.", "OutputFormat": "JSON", diff --git a/layouts/shortcodes/articlelist.html b/layouts/shortcodes/articlelist.html deleted file mode 100644 index 2755b1e2d..000000000 --- a/layouts/shortcodes/articlelist.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - {{ range $ind, $art := $.Site.Data.articles.article }} - - - - - - {{ end }} - -
Title - Author - Date -
{{$art.title | markdownify }}{{ $art.author | markdownify }}{{ $art.date }}
diff --git a/layouts/shortcodes/asciicast.html b/layouts/shortcodes/asciicast.html new file mode 100644 index 000000000..ee23adc2d --- /dev/null +++ b/layouts/shortcodes/asciicast.html @@ -0,0 +1,2 @@ +{{ $id := .Get 0 }} + diff --git a/layouts/shortcodes/output.html b/layouts/shortcodes/output.html index df1a8ae89..e51d284bb 100644 --- a/layouts/shortcodes/output.html +++ b/layouts/shortcodes/output.html @@ -2,10 +2,7 @@ {{$icon := index (split $file ".") 1 }}
{{$file}}
-
- {{- .Inner -}} +
{{- .Inner | string -}}
\ No newline at end of file diff --git a/static/_headers b/static/_headers deleted file mode 100644 index 1216e42d4..000000000 --- a/static/_headers +++ /dev/null @@ -1,5 +0,0 @@ -/* - X-Frame-Options: DENY - X-XSS-Protection: 1; mode=block - X-Content-Type-Options: nosniff - Referrer-Policy: origin-when-cross-origin diff --git a/static/images/blog/hugo-http2-push.png b/static/images/blog/hugo-http2-push.png new file mode 100644 index 0000000000000000000000000000000000000000..1ddfd46537c47fffba29057be753c5f4c640f034 GIT binary patch literal 20544 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

YtIuP^I+HY1b0gsmuz2?dy@$` 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
      G3W{jzXNpAauE?*gY=m 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