Merge commit '807c551922707fc5ae0eb26e8f01638c0c63fdb3'
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 23 Sep 2018 21:48:53 +0000 (23:48 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 23 Sep 2018 21:48:53 +0000 (23:48 +0200)
1  2 
docs/content/en/content-management/comments.md
docs/content/en/getting-started/code-toggle.md
docs/content/en/getting-started/configuration.md
docs/content/en/getting-started/installing.md
docs/content/en/getting-started/quick-start.md
docs/content/en/hosting-and-deployment/deployment-with-wercker.md
docs/data/homepagetweets.toml
docs/netlify.toml

index 17914ba2c3450f6bfbaf2becd961cc770da97340,0000000000000000000000000000000000000000..dad5d0786d2822a6373ff8db75f6281a556f6fe6
mode 100644,000000..100644
--- /dev/null
@@@ -1,85 -1,0 +1,86 @@@
 +---
 +title: Comments
 +linktitle: Comments
 +description: Hugo ships with an internal Disqus template, but this isn't the only commenting system that will work with your new Hugo website.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-03-09
 +keywords: [sections,content,organization]
 +categories: [project organization, fundamentals]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 140
 +weight: 140   #rem
 +draft: false
 +aliases: [/extras/comments/]
 +toc: true
 +---
 +
 +Hugo ships with support for [Disqus](https://disqus.com/), a third-party service that provides comment and community capabilities to websites via JavaScript.
 +
 +Your theme may already support Disqus, but if not, it is easy to add to your templates via [Hugo's built-in Disqus partial][disquspartial].
 +
 +## Add Disqus
 +
 +Hugo comes with all the code you need to load Disqus into your templates. Before adding Disqus to your site, you'll need to [set up an account][disqussetup].
 +
 +### Configure Disqus
 +
 +Disqus comments require you set a single value in your [site's configuration file][configuration] like so:
 +
 +{{< code-toggle copy="false" >}}
 +disqusShortname = "yourdiscussshortname"
 +{{</ code-toggle >}}
 +
 +For many websites, this is enough configuration. However, you also have the option to set the following in the [front matter][] of a single content file:
 +
 +* `disqus_identifier`
 +* `disqus_title`
 +* `disqus_url`
 +
 +### Render Hugo's Built-in Disqus Partial Template
 +
 +Disqus has its own [internal template](https://gohugo.io/templates/internal/#disqus) available, to render it add the following code where you want comments to appear:
 +
 +```
 +{{ template "_internal/disqus.html" . }}
 +```
 +
 +## Comments Alternatives
 +
 +There are a few alternatives to commenting on static sites for those who do not want to use Disqus:
 +
 +* [Static Man](https://staticman.net/)
 +* [Talkyard](https://www.talkyard.io/blog-comments) (Open source, & serverless hosting)
 +* [txtpen](https://txtpen.github.io/hn/)
 +* [IntenseDebate](http://intensedebate.com/)
 +* [Graph Comment][]
 +* [Muut](http://muut.com/)
 +* [isso](http://posativ.org/isso/) (Self-hosted, Python)
 +    * [Tutorial on Implementing Isso with Hugo][issotutorial]
 +* [Utterances](https://utteranc.es/) (Open source, Github comments widget built on Github issues)
++* [Remark](https://github.com/umputun/remark) (Open source, Golang, Easy to run docker)
 +
 +<!-- I don't think this is worth including in the documentation since it seems that Steve is no longer supporting or developing this project. rdwatters - 2017-02-29.-->
 +<!-- * [Kaiju](https://github.com/spf13/kaiju) -->
 +
 +<!-- ## Kaiju
 +
 +[Kaiju](https://github.com/spf13/kaiju) is an open-source project started by [spf13](http://spf13.com/) (Hugo’s author) to bring easy and fast real time discussions to the web.
 +
 +Written using Go, Socket.io, and [MongoDB][], Kaiju is very fast and easy to deploy.
 +
 +It is in early development but shows promise. If you have interest, please help by contributing via pull request, [opening an issue in the Kaiju GitHub repository][kaijuissue], or [Tweeting about it][tweet]. Every bit helps. -->
 +
 +[configuration]: /getting-started/configuration/
 +[disquspartial]: /templates/partials/#disqus
 +[disqussetup]: https://disqus.com/profile/signup/
 +[forum]: https://discourse.gohugo.io
 +[front matter]: /content-management/front-matter/
 +[Graph Comment]: https://graphcomment.com/
 +[kaijuissue]: https://github.com/spf13/kaiju/issues/new
 +[issotutorial]: https://stiobhart.net/2017-02-24-isso-comments/
 +[partials]: /templates/partials/
 +[MongoDB]: https://www.mongodb.com/
 +[tweet]: https://twitter.com/spf13
index b304d2c5bfd0af025a6c5c173edc60ceb0109989,0000000000000000000000000000000000000000..51c887a47a7c198cb2ab83a89b01e828abd3643e
mode 100644,000000..100644
--- /dev/null
@@@ -1,75 -1,0 +1,79 @@@
 +---
 +title: Code Toggle
 +description: Code Toggle tryout and showcase.
 +date: 2018-03-16
 +categories: [getting started,fundamentals]
 +keywords: [configuration,toml,yaml,json]
 +weight: 60
 +sections_weight: 60
 +draft: false
 +toc: true
 +---
 +
 +## The Config Toggler!
 +
 +This is an example for the Config Toggle shortcode. 
 +Its purpose is to let users choose a Config language by clicking on its corresponding tab. Upon doing so, every Code toggler on the page will be switched to the target language. Also, target language will be saved in user's `localStorage` so when they go to a different pages, Code Toggler display their last "toggled" config language.
 +
++{{% note %}}
++The `code-toggler` shortcode is not an internal Hugo shortcode. This page's purpose is to test out a custom feature that we use throughout this site. See: https://github.com/gohugoio/gohugoioTheme/blob/master/layouts/shortcodes/code-toggle.html
++{{% /note %}}
++
 +## That Config Toggler
 +
 +{{< code-toggle file="config">}}
 +
 +baseURL: "https://yoursite.example.com/"
 +title: "My Hugo Site"
 +footnoteReturnLinkContents: "↩"
 +permalinks:
 +  post: /:year/:month/:title/
 +params:
 +  Subtitle: "Hugo is Absurdly Fast!"
 +  AuthorName: "Jon Doe"
 +  GitHubUser: "spf13"
 +  ListOfFoo:
 +    - "foo1"
 +    - "foo2"
 +  SidebarRecentLimit: 5
 +{{< /code-toggle >}}
 +
 +## Another Config Toggler!
 +
 +{{< code-toggle file="theme">}}
 +
 +# theme.toml template for a Hugo theme
 +
 +name = "Hugo Theme"
 +license = "MIT"
 +licenselink = "https://github.com/budparr/gohugo.io/blob/master/LICENSE.md"
 +description = ""
 +homepage = "https://github.com/budparr/gohugo.io"
 +tags = ["website"]
 +features = ["", ""]
 +min_version = 0.18
 +
 +[author]
 +  name = "Bud Parr"
 +  homepage = "https://github.com/budparr"
 +
 +{{< /code-toggle >}}
 +
 +## Two regular code blocks
 +
 +{{< code file="bf-config.toml" >}}
 +[blackfriday]
 +  angledQuotes = true
 +  fractions = false
 +  plainIDAnchors = true
 +  extensions = ["hardLineBreak"]
 +{{< /code >}}
 +
 +{{< code file="bf-config.yml" >}}
 +blackfriday:
 +  angledQuotes: true
 +  fractions: false
 +  plainIDAnchors: true
 +  extensions:
 +    - hardLineBreak
 +{{< /code >}}
index 3f36eb28cbdb358f89fba6f0a1046004c030b47b,0000000000000000000000000000000000000000..f43c51b9b493cf6a5feb83fb51f21bfcb19a76dc
mode 100644,000000..100644
--- /dev/null
@@@ -1,417 -1,0 +1,417 @@@
- : Fetches the date from the content file's filename. For example, `218-02-22-mypage.md` will extract the date `218-02-22`. Also, if `slug` is not set, `mypage` will be used as the value for `.Slug`.
 +---
 +title: Configure Hugo
 +linktitle: Configuration
 +description: How to configure your Hugo site.
 +date: 2013-07-01
 +publishdate: 2017-01-02
 +lastmod: 2017-03-05
 +categories: [getting started,fundamentals]
 +keywords: [configuration,toml,yaml,json]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 60
 +weight: 60
 +sections_weight: 60
 +draft: false
 +aliases: [/overview/source-directory/,/overview/configuration/]
 +toc: true
 +---
 +
 +Hugo uses the `config.toml`, `config.yaml`, or `config.json` (if found in the
 +site root) as the default site config file.
 +
 +The user can choose to override that default with one or more site config files
 +using the command line `--config` switch.
 +
 +Examples:
 +
 +```
 +hugo --config debugconfig.toml
 +hugo --config a.toml,b.toml,c.toml
 +```
 +
 +{{% note %}}
 +Multiple site config files can be specified as a comma-separated string to the `--config` switch.
 +{{% /note %}}
 +
 +## All Configuration Settings
 +
 +The following is the full list of Hugo-defined variables with their default
 +value in parentheses. Users may choose to override those values in their site
 +config file(s).
 +
 +archetypeDir ("archetypes")
 +: The directory where Hugo finds archetype files (content templates).
 +
 +assetDir ("assets")
 +: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/).
 +
 +baseURL
 +: Hostname (and path) to the root, e.g. http://bep.is/
 +
 +blackfriday
 +: See [Configure Blackfriday](/getting-started/configuration/#configure-blackfriday)
 +
 +buildDrafts (false)
 +: Include drafts when building.
 +
 +buildExpired  (false)
 +: Include content already expired.
 +
 +buildFuture (false)
 +: Include content with publishdate in the future.
 +
 +canonifyURLs (false)
 +: Enable to turn relative URLs into absolute.
 +
 +contentDir ("content")
 +: The directory from where Hugo reads content files.
 +
 +dataDir ("data")
 +: The directory from where Hugo reads data files.
 +
 +defaultContentLanguage ("en")
 +: Content without language indicator will default to this language.
 +
 +defaultContentLanguageInSubdir (false)
 +: Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
 +
 +disableHugoGeneratorInject (false)
 +: Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
 +
 +disableKinds ([])
 +: Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"taxonomyTerm"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
 +
 +disableLiveReload (false)
 +: Disable automatic live reloading of browser window.
 +
 +disablePathToLower (false)
 +: Do not convert the url/path to lowercase.
 +
 +enableEmoji (false)
 +: Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
 +
 +enableGitInfo (false)
 +: Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
 +
 +enableMissingTranslationPlaceholders (false)
 +: Show a placeholder instead of the default value or an empty string if a translation is missing.
 +
 +enableRobotsTXT (false)
 +: Enable generation of `robots.txt` file.
 +
 +frontmatter
 +
 +: See [Front matter Configuration](#configure-front-matter).
 +
 +footnoteAnchorPrefix ("")
 +: Prefix for footnote anchors.
 +
 +footnoteReturnLinkContents ("")
 +: Text to display for footnote return links.
 +
 +googleAnalytics ("")
 +: Google Analytics tracking ID.
 +
 +hasCJKLanguage (false)
 +: If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
 +
 +imaging
 +: See [Image Processing Config](/content-management/image-processing/#image-processing-config).
 +
 +languages
 +: See [Configure Languages](/content-management/multilingual/#configure-languages).
 +
 +languageCode ("")
 +: The site's language code.
 +
 +disableLanguages
 +: See [Disable a Language](/content-management/multilingual/#disable-a-language)
 +
 +layoutDir ("layouts")
 +: The directory from where Hugo reads layouts (templates).
 +
 +log (false)
 +: Enable logging.
 +
 +logFile ("")
 +: Log File path (if set, logging enabled automatically).
 +
 +menu
 +: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
 +
 +metaDataFormat ("toml")
 +: Front matter meta-data format. Valid values: `"toml"`, `"yaml"`, or `"json"`.
 +
 +newContentEditor ("")
 +: The editor to use when creating new content.
 +
 +noChmod (false)
 +: Don't sync permission mode of files.
 +
 +noTimes (false)
 +: Don't sync modification time of files.
 +
 +paginate (10)
 +: Default number of pages per page in [pagination](/templates/pagination/).
 +
 +paginatePath ("page")
 +: The path element used during pagination (https://example.com/page/2).
 +
 +permalinks
 +: See [Content Management](/content-management/urls/#permalinks).
 +
 +pluralizeListTitles (true)
 +: Pluralize titles in lists.
 +
 +preserveTaxonomyNames (false)
 +: Preserve special characters in taxonomy names ("Gérard Depardieu" vs "Gerard Depardieu").
 +
 +publishDir ("public")
 +: The directory to where Hugo will write the final static site (the HTML files etc.).
 +
 +pygmentsCodeFencesGuessSyntax (false)
 +: Enable syntax guessing for code fences without specified language.
 +
 +pygmentsStyle ("monokai")
 +: Color-theme or style for syntax highlighting. See [Pygments Color Themes](https://help.farbox.com/pygments.html).
 +
 +pygmentsUseClasses (false)
 +: Enable using external CSS for syntax highlighting.
 +
 +related
 +: See [Related Content](/content-management/related/#configure-related-content).
 +
 +relativeURLs (false)
 +: Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
 +
 +refLinksErrorLevel ("ERROR") 
 +: When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
 +
 +refLinksNotFoundURL
 +: URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
 +
 +rssLimit (unlimited)
 +: Maximum number of items in the RSS feed.
 +
 +sectionPagesMenu ("")
 +: See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers).
 +
 +sitemap
 +: Default [sitemap configuration](/templates/sitemap-template/#configure-sitemap-xml).
 +
 +staticDir ("static")
 +: A directory or a list of directories from where Hugo reads [static files][static-files].
 +
 +stepAnalysis (false)
 +: Display memory and timing of different steps of the program.
 +
 +summaryLength (70)
 +: The length of text to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting).
 +
 +taxonomies
 +: See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies).
 +
 +theme ("")
 +: Theme to use (located by default in `/themes/THEMENAME/`).
 +
 +themesDir ("themes")
 +: The directory where Hugo reads the themes from.
 +
 +timeout (10000)
 +: Timeout for generating page contents, in milliseconds (defaults to 10&nbsp;seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
 +
 +title ("")
 +: Site title.
 +
 +uglyURLs (false)
 +: When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
 +
 +verbose (false)
 +: Enable verbose output.
 +
 +verboseLog (false)
 +: Enable verbose logging.
 +
 +watch (false)
 +: Watch filesystem for changes and recreate as needed.
 +
 +{{% note %}}
 +If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line:
 +```
 +cd ~/sites/yourhugosite
 +hugo config | grep emoji
 +```
 +
 +which shows output like
 +
 +```
 +enableemoji: true
 +```
 +{{% /note %}}
 +
 +## Configuration Lookup Order
 +
 +Similar to the template [lookup order][], Hugo has a default set of rules for searching for a configuration file in the root of your website's source directory as a default behavior:
 +
 +1. `./config.toml`
 +2. `./config.yaml`
 +3. `./config.json`
 +
 +In your `config` file, you can direct Hugo as to how you want your website rendered, control your website's menus, and arbitrarily define site-wide parameters specific to your project.
 +
 +
 +## Example Configuration
 +
 +The following is a typical example of a configuration file. The values nested under `params:` will populate the [`.Site.Params`][] variable for use in [templates][]:
 +
 +{{< code-toggle file="config">}}
 +baseURL: "https://yoursite.example.com/"
 +title: "My Hugo Site"
 +footnoteReturnLinkContents: "↩"
 +permalinks:
 +  post: /:year/:month/:title/
 +params:
 +  Subtitle: "Hugo is Absurdly Fast!"
 +  AuthorName: "Jon Doe"
 +  GitHubUser: "spf13"
 +  ListOfFoo:
 +    - "foo1"
 +    - "foo2"
 +  SidebarRecentLimit: 5
 +{{< /code-toggle >}}
 +
 +## Configure with Environment Variables
 +
 +In addition to the 3 config options already mentioned, configuration key-values can be defined through operating system environment variables.
 +
 +For example, the following command will effectively set a website's title on Unix-like systems:
 +
 +```
 +$ env HUGO_TITLE="Some Title" hugo
 +```
 +
 +This is really useful if you use a service such as Netlify to deploy your site. Look at the Hugo docs [Netlify configuration file](https://github.com/gohugoio/hugoDocs/blob/master/netlify.toml) for an example.
 +
 +{{% note "Setting Environment Variables" %}}
 +Names must be prefixed with `HUGO_` and the configuration key must be set in uppercase when setting operating system environment variables.
 +{{% /note %}}
 +
 +{{< todo >}}
 +Test and document setting params via JSON env var.
 +{{< /todo >}}
 +
 +## Ignore Files When Rendering
 +
 +The following statement inside `./config.toml` will cause Hugo to ignore files ending with `.foo` and `.boo` when rendering:
 +
 +```
 +ignoreFiles = [ "\\.foo$", "\\.boo$" ]
 +```
 +
 +The above is a list of regular expressions. Note that the backslash (`\`) character is escaped in this example to keep TOML happy.
 +
 +## Configure Front Matter
 +
 +### Configure Dates
 +
 +Dates are important in Hugo, and you can configure how Hugo assigns dates to your content pages. You do this by adding a `frontmatter` section to your `config.toml`.
 +
 +
 +The default configuration is:
 +
 +```toml
 +[frontmatter]
 +date = ["date", "publishDate", "lastmod"]
 +lastmod = [":git", "lastmod", "date", "publishDate"]
 +publishDate = ["publishDate", "date"]
 +expiryDate = ["expiryDate"]
 +```
 +
 +If you, as an example, have a non-standard date parameter in some of your content, you can override the setting for `date`:
 +
 + ```toml
 +[frontmatter]
 +date = ["myDate", ":default"]
 +```
 +
 +The `:default` is a shortcut to the default settings. The above will set `.Date` to the date value in `myDate` if present, if not we will look in `date`,`publishDate`, `lastmod` and pick the first valid date.
 +
 +In the list to the right, values starting with ":" are date handlers with a special meaning (see below). The others are just names of date parameters (case insensitive) in your front matter configuration.  Also note that Hugo have some built-in aliases to the above: `lastmod` => `modified`, `publishDate` => `pubdate`, `published` and `expiryDate` => `unpublishdate`. With that, as an example, using `pubDate` as a date in front matter, will, by default, be assigned to `.PublishDate`.
 +
 +The special date handlers are:
 +
 +
 +`:fileModTime`
 +: Fetches the date from the content file's last modification timestamp.
 +
 +An example:
 +
 + ```toml
 +[frontmatter]
 +lastmod = ["lastmod", ":fileModTime", ":default"]
 +```
 +
 +
 +The above will try first to extract the value for `.Lastmod` starting with the `lastmod` front matter parameter, then the content file's modification timestamp. The last, `:default` should not be needed here, but Hugo will finally look for a valid date in `:git`, `date` and then `publishDate`.
 +
 +
 +`:filename`
++: Fetches the date from the content file's filename. For example, `2018-02-22-mypage.md` will extract the date `2018-02-22`. Also, if `slug` is not set, `mypage` will be used as the value for `.Slug`.
 +
 +An example:
 +
 +```toml
 +[frontmatter]
 +date  = [":filename", ":default"]
 +```
 +
 +The above will try first to extract the value for `.Date` from the filename, then it will look in front matter parameters `date`, `publishDate` and lastly `lastmod`.
 +
 +
 +`:git`
 +: This is the Git author date for the last revision of this content file. This will only be set if `--enableGitInfo` is set or `enableGitInfo = true` is set in site config.
 +
 +## Configure Blackfriday
 +
 +[Blackfriday](https://github.com/russross/blackfriday) is Hugo's built-in Markdown rendering engine.
 +
 +Hugo typically configures Blackfriday with sane default values that should fit most use cases reasonably well.
 +
 +However, if you have specific needs with respect to Markdown, Hugo exposes some of its Blackfriday behavior options for you to alter. The following table lists these Hugo options, paired with the corresponding flags from Blackfriday's source code ( [html.go](https://github.com/russross/blackfriday/blob/master/html.go) and [markdown.go](https://github.com/russross/blackfriday/blob/master/markdown.go)).
 +
 +{{< readfile file="/content/en/readfiles/bfconfig.md" markdown="true" >}}
 +
 +{{% note %}}
 +1. Blackfriday flags are *case sensitive* as of Hugo v0.15.
 +2. Blackfriday flags must be grouped under the `blackfriday` key and can be set on both the site level *and* the page level. Any setting on a page will override its respective site setting.
 +{{% /note %}}
 +
 +{{< code-toggle file="config" >}}
 +[blackfriday]
 +  angledQuotes = true
 +  fractions = false
 +  plainIDAnchors = true
 +  extensions = ["hardLineBreak"]
 +{{< /code-toggle >}}
 +
 +## Configure Additional Output Formats
 +
 +Hugo v0.20 introduced the ability to render your content to multiple output formats (e.g., to JSON, AMP html, or CSV). See [Output Formats][] for information on how to add these values to your Hugo project's configuration file.
 +
 +## Configuration Format Specs
 +
 +* [TOML Spec][toml]
 +* [YAML Spec][yaml]
 +* [JSON Spec][json]
 +
 +[`.Site.Params`]: /variables/site/
 +[directory structure]: /getting-started/directory-structure
 +[json]: https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf "Specification for JSON, JavaScript Object Notation"
 +[lookup order]: /templates/lookup-order/
 +[Output Formats]: /templates/output-formats/
 +[templates]: /templates/
 +[toml]: https://github.com/toml-lang/toml
 +[yaml]: http://yaml.org/spec/
 +[static-files]: /content-management/static-files/
index ccf96317b31101567264fcee627b0c6219fe303e,0000000000000000000000000000000000000000..b5b210d3e3ce1de454a2ae39b719f89b03d90ae9
mode 100644,000000..100644
--- /dev/null
@@@ -1,522 -1,0 +1,518 @@@
- * [Go (latest or previous version)][installgo]
- #### Vendored Dependencies
- Hugo uses [dep][] to vendor dependencies, but we don't commit the vendored packages themselves to the Hugo git repository. Therefore, a simple `go get` is *not* supported because the command is not vendor aware.
- The simplest way is to use [mage][] (a Make alternative for Go projects.)
 +---
 +title: Install Hugo
 +linktitle: Install Hugo
 +description: Install Hugo on macOS, Windows, Linux, OpenBSD, FreeBSD, and on any machine where the Go compiler tool chain can run.
 +date: 2016-11-01
 +publishdate: 2016-11-01
 +lastmod: 2018-01-02
 +categories: [getting started,fundamentals]
 +authors: ["Michael Henderson"]
 +keywords: [install,pc,windows,linux,macos,binary,tarball]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 30
 +weight: 30
 +sections_weight: 30
 +draft: false
 +aliases: [/tutorials/installing-on-windows/,/tutorials/installing-on-mac/,/overview/installing/,/getting-started/install,/install/]
 +toc: true
 +---
 +
 +
 +{{% note %}}
 +There is lots of talk about "Hugo being written in Go", but you don't need to install Go to enjoy Hugo. Just grab a precompiled binary!
 +{{% /note %}}
 +
 +Hugo is written in [Go](https://golang.org/) with support for multiple platforms. The latest release can be found at [Hugo Releases][releases].
 +
 +Hugo currently provides pre-built binaries for the following:
 +
 +* macOS (Darwin) for x64, i386, and ARM architectures
 +* Windows
 +* Linux
 +* OpenBSD
 +* FreeBSD
 +
 +Hugo may also be compiled from source wherever the Go toolchain can run; e.g., on other operating systems such as DragonFly BSD, OpenBSD, Plan&nbsp;9, Solaris, and others. See <https://golang.org/doc/install/source> for the full set of supported combinations of target operating systems and compilation architectures.
 +
 +## Quick Install
 +
 +### Binary (Cross-platform)
 +
 +Download the appropriate version for your platform from [Hugo Releases][releases]. Once downloaded, the binary can be run from anywhere. You don't need to install it into a global location. This works well for shared hosts and other systems where you don't have a privileged account.
 +
 +Ideally, you should install it somewhere in your `PATH` for easy use. `/usr/local/bin` is the most probable location.
 +
 +### Homebrew (macOS)
 +
 +If you are on macOS and using [Homebrew][brew], you can install Hugo with the following one-liner:
 +
 +{{< code file="install-with-homebrew.sh" >}}
 +brew install hugo
 +{{< /code >}}
 +
 +For more detailed explanations, read the installation guides that follow for installing on macOS and Windows.
 +
 +### Chocolatey (Windows)
 +
 +If you are on a Windows machine and use [Chocolatey][] for package management, you can install Hugo with the following one-liner:
 +
 +{{< code file="install-with-chocolatey.ps1" >}}
 +choco install hugo -confirm
 +{{< /code >}}
 +
 +### Scoop (Windows)
 +
 +If you are on a Windows machine and use [Scoop][] for package management, you can install Hugo with the following one-liner:
 +
 +```bash
 +scoop install hugo
 +```
 +
 +### Source
 +
 +#### Prerequisite Tools
 +
 +* [Git][installgit]
- go get github.com/magefile/mage
- go get -d github.com/gohugoio/hugo
- cd ${GOPATH:-$HOME/go}/src/github.com/gohugoio/hugo
- mage vendor
- HUGO_BUILD_TAGS=extended mage install
++* [Go (at least Go 1.11)](https://golang.org/dl/)
 +
 +#### Fetch from GitHub
 +
++Since Hugo 0.48, Hugo uses the Go Modules support built into Go 1.11 to build. The easiest way to get started is to clone Hugo in a directory outside of the GOPATH, as in the following example:
++
 +{{< code file="from-gh.sh" >}}
++mkdir $HOME/src
++cd $HOME/src
++git clone https://github.com/gohugoio/hugo.git
++cd hugo
++go install
 +{{< /code >}}
 +
 +Remove `HUGO_BUILD_TAGS=extended` if you do not want Sass/SCSS support.
 +
 +{{% note %}}
 +If you are a Windows user, substitute the `$HOME` environment variable above with `%USERPROFILE%`.
 +{{% /note %}}
 +
 +## macOS
 +
 +### Assumptions
 +
 +1. You know how to open the macOS terminal.
 +2. You're running a modern 64-bit Mac.
 +3. You will use `~/Sites` as the starting point for your site. (`~/Sites` is used for example purposes. If you are familiar enough with the command line and file system, you should have no issues following along with the instructions.)
 +
 +### Pick Your Method
 +
 +There are three ways to install Hugo on your Mac
 +
 +1. The [Homebrew][brew] `brew` utility
 +2. Distribution (i.e., tarball)
 +3. Building from Source
 +
 +There is no "best" way to install Hugo on your Mac. You should use the method that works best for your use case.
 +
 +#### Pros and Cons
 +
 +There are pros and cons to each of the aforementioned methods:
 +
 +1. **Homebrew.** Homebrew is the simplest method and will require the least amount of work to maintain. The drawbacks aren't severe. The default package will be for the most recent release, so it will not have bug fixes until the next release (i.e., unless you install it with the `--HEAD` option). Hugo `brew` releases may lag a few days behind because it has to be coordinated with another team. Nevertheless, `brew` is the recommended installation method if you want to work from a stable, widely used source. Brew works well and is easy to update.
 +
 +2. **Tarball.** Downloading and installing from the tarball is also easy, although it requires a few more command line skills than does Homebrew. Updates are easy as well: you just repeat the process with the new binary. This gives you the flexibility to have multiple versions on your computer. If you don't want to use `brew`, then the tarball/binary is a good choice.
 +
 +3. **Building from Source.** Building from source is the most work. The advantage of building from source is that you don't have to wait for a release to add features or bug fixes. The disadvantage is that you need to spend more time managing the setup, which is manageable but requires more time than the preceding two options.
 +
 +{{% note %}}
 +Since building from source is appealing to more seasoned command line users, this guide will focus more on installing Hugo via Homebrew and Tarball.
 +{{% /note %}}
 +
 +### Install Hugo with Brew
 +
 +{{< youtube WvhCGlLcrF8 >}}
 +
 +#### Step 1: Install `brew` if you haven't already
 +
 +Go to the `brew` website, <https://brew.sh/>, and follow the directions there. The most important step is the installation from the command line:
 +
 +{{< code file="install-brew.sh" >}}
 +ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
 +{{< /code >}}
 +
 +#### Step 2: Run the `brew` Command to Install `hugo`
 +
 +Installing Hugo using `brew` is as easy as the following:
 +
 +{{< code file="install-brew.sh" >}}
 +brew install hugo
 +{{< /code >}}
 +
 +If Homebrew is working properly, you should see something similar to the following:
 +
 +```
 +==> Downloading https://homebrew.bintray.com/bottles/hugo-0.21.sierra.bottle.tar.gz
 +######################################################################### 100.0%
 +==> Pouring hugo-0.21.sierra.bottle.tar.gz
 +🍺  /usr/local/Cellar/hugo/0.21: 32 files, 17.4MB
 +```
 +
 +{{% note "Installing the Latest Hugo with Brew" %}}
 +Replace `brew install hugo` with `brew install hugo --HEAD` if you want the absolute latest in-development version.
 +{{% /note %}}
 +
 +`brew` should have updated your path to include Hugo. You can confirm by opening a new terminal window and running a few commands:
 +
 +```
 +$ # show the location of the hugo executable
 +which hugo
 +/usr/local/bin/hugo
 +
 +# show the installed version
 +ls -l $( which hugo )
 +lrwxr-xr-x  1 mdhender admin  30 Mar 28 22:19 /usr/local/bin/hugo -> ../Cellar/hugo/0.13_1/bin/hugo
 +
 +# verify that hugo runs correctly
 +hugo version
 +Hugo Static Site Generator v0.13 BuildDate: 2015-03-09T21:34:47-05:00
 +```
 +
 +### Install Hugo from Tarball
 +
 +#### Step 1: Decide on the location
 +
 +When installing from the tarball, you have to decide if you're going to install the binary in `/usr/local/bin` or in your home directory. There are three camps on this:
 +
 +1. Install it in `/usr/local/bin` so that all the users on your system have access to it. This is a good idea because it's a fairly standard place for executables. The downside is that you may need elevated privileges to put software into that location. Also, if there are multiple users on your system, they will all run the same version. Sometimes this can be an issue if you want to try out a new release.
 +
 +2. Install it in `~/bin` so that only you can execute it. This is a good idea because it's easy to do, easy to maintain, and doesn't require elevated privileges. The downside is that only you can run Hugo. If there are other users on your site, they have to maintain their own copies. That can lead to people running different versions. Of course, this does make it easier for you to experiment with different releases.
 +
 +3. Install it in your `Sites` directory. This is not a bad idea if you have only one site that you're building. It keeps every thing in a single place. If you want to try out new releases, you can make a copy of the entire site and update the Hugo executable.
 +
 +All three locations will work for you. In the interest of brevity, this guide focuses on option #2.
 +
 +#### Step 2: Download the Tarball
 +
 +1. Open <https://github.com/gohugoio/hugo/releases> in your browser.
 +
 +2. Find the current release by scrolling down and looking for the green tag that reads "Latest Release."
 +
 +3. Download the current tarball for the Mac. The name will be something like `hugo_X.Y_osx-64bit.tgz`, where `X.YY` is the release number.
 +
 +4. By default, the tarball will be saved to your `~/Downloads` directory. If you choose to use a different location, you'll need to change that in the following steps.
 +
 +#### Step 3: Confirm your download
 +
 +Verify that the tarball wasn't corrupted during the download:
 +
 +```
 +tar tvf ~/Downloads/hugo_X.Y_osx-64bit.tgz
 +-rwxrwxrwx  0 0      0           0 Feb 22 04:02 hugo_X.Y_osx-64bit/hugo_X.Y_osx-64bit.tgz
 +-rwxrwxrwx  0 0      0           0 Feb 22 03:24 hugo_X.Y_osx-64bit/README.md
 +-rwxrwxrwx  0 0      0           0 Jan 30 18:48 hugo_X.Y_osx-64bit/LICENSE.md
 +```
 +
 +The `.md` files are documentation for Hugo. The other file is the executable.
 +
 +#### Step 4: Install Into Your `bin` Directory
 +
 +```
 +# create the directory if needed
 +mkdir -p ~/bin
 +
 +# make it the working directory
 +cd ~/bin
 +
 +# extract the tarball
 +tar -xvzf ~/Downloads/hugo_X.Y_osx-64bit.tgz
 +Archive:  hugo_X.Y_osx-64bit.tgz
 +  x ./
 +  x ./hugo
 +  x ./LICENSE.md
 +  x ./README.md
 +
 +# verify that it runs
 +./hugo version
 +Hugo Static Site Generator v0.13 BuildDate: 2015-02-22T04:02:30-06:00
 +```
 +
 +You may need to add your bin directory to your `PATH` variable. The `which` command will check for us. If it can find `hugo`, it will print the full path to it. Otherwise, it will not print anything.
 +
 +```
 +# check if hugo is in the path
 +which hugo
 +/Users/USERNAME/bin/hugo
 +```
 +
 +If `hugo` is not in your `PATH`, add it by updating your `~/.bash_profile` file. First, start up an editor:
 +
 +```
 +nano ~/.bash_profile
 +```
 +
 +Add a line to update your `PATH` variable:
 +
 +```
 +export PATH=$PATH:$HOME/bin
 +```
 +
 +Then save the file by pressing Control-X, then Y to save the file and return to the prompt.
 +
 +Close the terminal and open a new terminal to pick up the changes to your profile. Verify your success by running the `which hugo` command again.
 +
 +You've successfully installed Hugo.
 +
 +### Build from Source on Mac
 +
 +If you want to compile Hugo yourself, you'll need to install Go (aka Golang). You can [install Go directly from the Go website](https://golang.org/dl/) or via Homebrew using the following command:
 +
 +```
 +brew install go
 +```
 +
 +#### Step 1: Get the Source
 +
 +If you want to compile a specific version of Hugo, go to <https://github.com/gohugoio/hugo/releases> and download the source code for the version of your choice. If you want to compile Hugo with all the latest changes (which might include bugs), clone the Hugo repository:
 +
 +```
 +git clone https://github.com/gohugoio/hugo
 +```
 +
 +{{% warning "Sometimes \"Latest\" = \"Bugs\""%}}
 +Cloning the Hugo repository directly means taking the good with the bad. By using the bleeding-edge version of Hugo, you make your development susceptible to the latest features, as well as the latest bugs. Your feedback is appreciated. If you find a bug in the latest release, [please create an issue on GitHub](https://github.com/gohugoio/hugo/issues/new).
 +{{% /warning %}}
 +
 +#### Step 2: Compiling
 +
 +Make the directory containing the source your working directory and then fetch Hugo's dependencies:
 +
 +```
 +mkdir -p src/github.com/gohugoio
 +ln -sf $(pwd) src/github.com/gohugoio/hugo
 +
 +# set the build path for Go
 +export GOPATH=$(pwd)
 +
 +go get
 +```
 +
 +This will fetch the absolute latest version of the dependencies. If Hugo fails to build, it may be the result of a dependency's author introducing a breaking change.
 +
 +Once you have properly configured your directory, you can compile Hugo using the following command:
 +
 +```
 +go build -o hugo main.go
 +```
 +
 +Then place the `hugo` executable somewhere in your `$PATH`. You're now ready to start using Hugo.
 +
 +## Windows
 +
 +The following aims to be a complete guide to installing Hugo on your Windows PC.
 +
 +{{< youtube G7umPCU-8xc >}}
 +
 +### Assumptions
 +
 +1. You will use `C:\Hugo\Sites` as the starting point for your new project.
 +2. You will use `C:\Hugo\bin` to store executable files.
 +
 +### Set up Your Directories
 +
 +You'll need a place to store the Hugo executable, your [content][], and the generated Hugo website:
 +
 +1. Open Windows Explorer.
 +2. Create a new folder: `C:\Hugo`, assuming you want Hugo on your C drive, although this can go anywhere
 +3. Create a subfolder in the Hugo folder: `C:\Hugo\bin`
 +4. Create another subfolder in Hugo: `C:\Hugo\Sites`
 +
 +### Technical Users
 +
 +1. Download the latest zipped Hugo executable from [Hugo Releases][releases].
 +2. Extract all contents to your `..\Hugo\bin` folder.
 +3. The `hugo` executable will be named as `hugo_hugo-version_platform_arch.exe`. Rename the executable to `hugo.exe` for ease of use.
 +4. In PowerShell or your preferred CLI, add the `hugo.exe` executable to your PATH by navigating to `C:\Hugo\bin` (or the location of your hugo.exe file) and use the command `set PATH=%PATH%;C:\Hugo\bin`. If the `hugo` command does not work after a reboot, you may have to run the command prompt as administrator.
 +
 +### Less-technical Users
 +
 +1. Go to the [Hugo Releases][releases] page.
 +2. The latest release is announced on top. Scroll to the bottom of the release announcement to see the downloads. They're all ZIP files.
 +3. Find the Windows files near the bottom (they're in alphabetical order, so Windows is last) – download either the 32-bit or 64-bit file depending on whether you have 32-bit or 64-bit Windows. (If you don't know, [see here](https://esupport.trendmicro.com/en-us/home/pages/technical-support/1038680.aspx).)
 +4. Move the ZIP file into your `C:\Hugo\bin` folder.
 +5. Double-click on the ZIP file and extract its contents. Be sure to extract the contents into the same `C:\Hugo\bin` folder – Windows will do this by default unless you tell it to extract somewhere else.
 +6. You should now have three new files: The hugo executable (`hugo.exe`), `LICENSE`, and `README.md`.
 +
 +Now you need to add Hugo to your Windows PATH settings:
 +
 +#### For Windows 10 Users:
 +
 +* Right click on the **Start** button.
 +* Click on **System**.
 +* Click on **Advanced System Settings** on the left.
 +* Click on the **Environment Variables...** button on the bottom.
 +* In the User variables section, find the row that starts with PATH (PATH will be all caps).
 +* Double-click on **PATH**.
 +* Click the **New...** button.
 +* Type in the folder where `hugo.exe` was extracted, which is `C:\Hugo\bin` if you went by the instructions above. *The PATH entry should be the folder where Hugo lives and not the binary.* Press <kbd>Enter</kbd> when you're done typing.
 +* Click OK at every window to exit.
 +
 +{{% note "Path Editor in Windows 10"%}}
 +The path editor in Windows 10 was added in the large [November 2015 Update](https://blogs.windows.com/windowsexperience/2015/11/12/first-major-update-for-windows-10-available-today/). You'll need to have that or a later update installed for the above steps to work. You can see what Windows 10 build you have by clicking on the <i class="fa fa-windows"></i>&nbsp;Start button → Settings → System → About. See [here](https://www.howtogeek.com/236195/how-to-find-out-which-build-and-version-of-windows-10-you-have/) for more.)
 +{{% /note %}}
 +
 +#### For Windows 7 and 8.x users:
 +
 +Windows 7 and 8.1 do not include the easy path editor included in Windows 10, so non-technical users on those platforms are advised to install a free third-party path editor like [Windows Environment Variables Editor][Windows Environment Variables Editor] or [Path Editor](https://patheditor2.codeplex.com/).
 +
 +### Verify the Executable
 +
 +Run a few commands to verify that the executable is ready to run, and then build a sample site to get started.
 +
 +#### 1. Open a Command Prompt
 +
 +At the prompt, type `hugo help` and press the <kbd>Enter</kbd> key. You should see output that starts with:
 +
 +```
 +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 https://gohugo.io/.
 +```
 +
 +If you do, then the installation is complete. If you don't, double-check the path that you placed the `hugo.exe` file in and that you typed that path correctly when you added it to your `PATH` variable. If you're still not getting the output, search the [Hugo discussion forum][forum] to see if others have already figured out our problem. If not, add a note---in the "Support" category---and be sure to include your command and the output.
 +
 +At the prompt, change your directory to the `Sites` directory.
 +
 +```
 +C:\Program Files> cd C:\Hugo\Sites
 +C:\Hugo\Sites>
 +```
 +
 +#### 2. Run the Command
 +
 +Run the command to generate a new site. I'm using `example.com` as the name of the site.
 +
 +```
 +C:\Hugo\Sites> hugo new site example.com
 +```
 +
 +You should now have a directory at `C:\Hugo\Sites\example.com`. Change into that directory and list the contents. You should get output similar to the following:
 +
 +```
 +C:\Hugo\Sites> cd example.com
 +C:\Hugo\Sites\example.com> dir
 +Directory of C:\hugo\sites\example.com
 +
 +04/13/2015  10:44 PM    <DIR>          .
 +04/13/2015  10:44 PM    <DIR>          ..
 +04/13/2015  10:44 PM    <DIR>          archetypes
 +04/13/2015  10:44 PM                83 config.toml
 +04/13/2015  10:44 PM    <DIR>          content
 +04/13/2015  10:44 PM    <DIR>          data
 +04/13/2015  10:44 PM    <DIR>          layouts
 +04/13/2015  10:44 PM    <DIR>          static
 +               1 File(s)             83 bytes
 +               7 Dir(s)   6,273,331,200 bytes free
 +```
 +
 +### Troubleshoot Windows Installation
 +
 +[@dhersam][] has created a nice video on common issues:
 +
 +{{< youtube c8fJIRNChmU >}}
 +
 +## Linux
 +
 +### Snap Package
 +
 +In any of the [Linux distributions that support snaps][snaps], you may install install the "extended" Sass/SCSS version with this command:
 +
 +    snap install hugo --channel=extended
 +
 +To install the non-extended version without Sass/SCSS support:
 +
 +    snap install hugo
 +
 +To switch between the two, use either `snap refresh hugo --channel=extended` or `snap refresh hugo --channel=stable`.
 +
 +{{% 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). Use ```sudo snap install hugo --classic``` to disable the default security model if you want hugo to be able to have write access in other paths besides the user’s `$HOME` directory.
 +{{% /note %}}
 +
 +### Debian and Ubuntu
 +
 +[@anthonyfok](https://github.com/anthonyfok) and friends in the [Debian Go Packaging Team](https://go-team.pages.debian.net/) maintains an official hugo [Debian package](https://packages.debian.org/hugo) which is shared with [Ubuntu](https://packages.ubuntu.com/hugo) and is installable via `apt-get`:
 +
 +    sudo apt-get install hugo
 +
 +This installs the "extended" Sass/SCSS version.
 +
 +### Arch Linux
 +
 +You can also install Hugo from the Arch Linux [community](https://www.archlinux.org/packages/community/x86_64/hugo/) repository. Applies also to derivatives such as Manjaro.
 +
 +```
 +sudo pacman -Syu hugo
 +```
 +
 +### Fedora, Red Hat and CentOS
 +
 +Fedora maintains an [official package for Hugo](https://apps.fedoraproject.org/packages/hugo) which may be installed with:
 +
 +    sudo dnf install hugo
 +
 +For the latest version, the Hugo package maintained by [@daftaupe](https://github.com/daftaupe) at Fedora Copr is recommended:
 +
 +* <https://copr.fedorainfracloud.org/coprs/daftaupe/hugo/>
 +
 +See the [related discussion in the Hugo forums][redhatforum].
 +
 +### Solus
 +
 +Solus includes Hugo in its package repository, it may be installed with:
 +
 +```
 +sudo eopkg install hugo
 +```
 +
 +## OpenBSD
 +
 +OpenBSD provides a package for Hugo via `pkg_add`:
 +
 +    doas pkg_add hugo
 +
 +
 +## Upgrade Hugo
 +
 +Upgrading Hugo is as easy as downloading and replacing the executable you’ve placed in your `PATH` or run `brew upgrade hugo` if using Homebrew.
 +
 +## Install Pygments (Optional)
 +
 +The Hugo executable has one *optional* external dependency for source code highlighting ([Pygments][pygments]).
 +
 +If you want to have source code highlighting using the [highlight shortcode][], you need to install the Python-based Pygments program. The procedure is outlined on the [Pygments homepage][pygments].
 +
 +## Next Steps
 +
 +Now that you've installed Hugo, read the [Quick Start guide][quickstart] and explore the rest of the documentation. If you have questions, ask the Hugo community directly by visiting the [Hugo Discussion Forum][forum].
 +
 +[brew]: https://brew.sh/
 +[Chocolatey]: https://chocolatey.org/
 +[content]: /content-management/
 +[@dhersam]: https://github.com/dhersam
 +[forum]: https://discourse.gohugo.io
 +[mage]: https://github.com/magefile/mage
 +[dep]: https://github.com/golang/dep
 +[highlight shortcode]: /content-management/shortcodes/#highlight
 +[installgit]: http://git-scm.com/
 +[installgo]: https://golang.org/dl/
 +[Path Editor]: https://patheditor2.codeplex.com/
 +[pygments]: http://pygments.org
 +[quickstart]: /getting-started/quick-start/
 +[redhatforum]: https://discourse.gohugo.io/t/solved-fedora-copr-repository-out-of-service/2491
 +[releases]: https://github.com/gohugoio/hugo/releases
 +[Scoop]: https://scoop.sh/
 +[snaps]: http://snapcraft.io/docs/core/install
 +[windowsarch]: https://esupport.trendmicro.com/en-us/home/pages/technical-support/1038680.aspx
 +[Windows Environment Variables Editor]: http://eveditor.com/
index 59a8513c80a5c82d6ea95a7ef60c75166107ab0a,0000000000000000000000000000000000000000..16b69d7c1b941b790b54cce83750dc28223b1133
mode 100644,000000..100644
--- /dev/null
@@@ -1,140 -1,0 +1,140 @@@
- **Tip:** Make the changes to the site configuration or any other file in your site while the Hugo server is running, and you will see the changes in the browser right away.
 +---
 +title: Quick Start
 +linktitle: Quick Start
 +description: Create a Hugo site using the beautiful Ananke theme.
 +date: 2013-07-01
 +publishdate: 2013-07-01
 +categories: [getting started]
 +keywords: [quick start,usage]
 +authors: [Shekhar Gulati, Ryan Watters]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 10
 +weight: 10
 +sections_weight: 10
 +draft: false
 +aliases: [/quickstart/,/overview/quickstart/]
 +toc: true
 +---
 +
 +{{% note %}}
 +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 %}}
 +
 +
 +
 +## Step 1: Install Hugo
 +
 +{{% 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 %}}
 +
 +```bash
 +brew install hugo
 +```
 +
 +To verify your new install:
 +
 +```bash
 +hugo version
 +```
 +
 +
 +{{< asciicast HDlKrUrbfT7yiWsbd6QoxzRTN >}}
 +
 +
 +## Step 2: Create a New Site
 +
 +```bash
 +hugo new site quickstart
 +```
 +
 +The above will create a new Hugo site in a folder named `quickstart`.
 +
 +{{< asciicast 1PH9A2fs14Dnyarx5v8OMYQer >}}
 +
 +
 +## 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
 +```
 +
 +
 +{{< asciicast WJM2LEZQs8VRhNeuZ5NiGPp9I >}}
 +
 +## Step 4: Add Some Content
 +
 +```
 +hugo new posts/my-first-post.md
 +```
 +
 +
 +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:
 +
 +```
 +▶ hugo server -D
 +
 +Started building sites ...
 +Built site for language en:
 +1 of 1 draft rendered
 +0 future content
 +0 expired content
 +1 regular pages created
 +8 other pages created
 +0 non-page files copied
 +1 paginator pages created
 +0 categories created
 +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
 +```
 +
 +
 +**Navigate to your new site at [http://localhost:1313/](http://localhost:1313/).**
 +
 +
 +
 +## Step 5: Customize the Theme
 +
 +Your new site already looks great, but you will want to tweak it a little before you release it to the public.
 +
 +### Site Configuration
 +
 +Open up `config.toml` in a text editor:
 +
 +```
 +baseURL = "https://example.org/"
 +languageCode = "en-us"
 +title = "My New Hugo Site"
 +theme = "ananke"
 +```
 +
 +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. 
 +
 +{{% note %}}
++**Tip:** Make the changes to the site configuration or any other file in your site while the Hugo server is running, and you will see the changes in the browser right away, though you may need to [clear your cache](https://kb.iu.edu/d/ahic).
 +{{% /note %}}
 +
 +
 +For theme specific configuration options, see the [theme site](https://github.com/budparr/gohugo-theme-ananke).
 +
 +**For further theme customization, see [Customize a Theme](/themes/customizing/).**
 +
 +## Recapitulation
 +
 +{{< asciicast pWp4uvyAkdWgQllD9RCfeBL5k >}}
index ac9d7a3e63b80b47f18075244420329e76177773,0000000000000000000000000000000000000000..1fed46430a223bce9ed28918eb07f3e9708727d5
mode 100644,000000..100644
--- /dev/null
@@@ -1,324 -1,0 +1,324 @@@
- To sign up for a free Wercker account, go to <https://wercker.com> and click the **Sign Up** button on the top right of the home screen.
 +---
 +title: Deployment with Wercker
 +linktitle: Deployment with Wercker
 +description: You can use a free tool called Wercker to automate deployments between your GitHub-hosted source and final website on GitHub pages.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [hosting and deployment]
 +keywords: [wercker,deployment,github,git]
 +authors: [Arjen Schwarz, Samuel Debruyn]
 +menu:
 +  docs:
 +    parent: "hosting-and-deployment"
 +    weight: 60
 +weight: 60
 +sections_weight: 60
 +draft: false
 +aliases: [/tutorials/automated-deployments/]
 +toc: true
 +wip: false
 +notesforauthors:
 +---
 +
 +## Goals
 +
 +By the end of this guide, you will have completed the following:
 +
 +* Creating a basic Hugo project and website
 +* Version controlling your project with Git
 +* Adding your project to GitHub
 +* Automating site deployments with a free tool called Wercker
 +* Deploying your website to GitHub Pages for free hosting
 +
 +## Assumptions
 +
 +1. You have a working familiarity with using Git for version control
 +2. You have a GitHub account
 +3. You have already created a basic Hugo project
 +
 +If you do not meet these assumptions, the [GitHub help section][githubhelp] has an explanation of how to install and use git. [Signing up for a GitHub][ghsignup] account is free as well. If you are completely unfamiliar with creating a new Hugo website, visit the [Hugo Quick Start][quickstart].
 +
 +## Create a Basic Hugo Site
 +
 +{{% note "This Guide Uses the Hugo CLI" %}}
 +All the work for setting up a Hugo project and using this guide is done via the Hugo CLI's most basic commands. See the [command line reference page](/commands/) for a more exhaustive account of the CLI's features.
 +{{% /note %}}
 +
 +First, create your new Hugo website using the [`hugo new site` command][basicusage] and change into the newly created directory for the project. In this guide, we are calling our new project `hugo-wercker-example`:
 +
 +{{< code file="hugo-new-site.sh" >}}
 +hugo new site hugo-wercker-example
 +cd hugo-wercker-example
 +{{< /code >}}
 +
 +We will use the [Herring Cove theme][] by first cloning the theme into the `themes` directory.
 +
 +{{< code file="clone-herring-cove-theme.sh" >}}
 +cd themes
 +git clone https://github.com/spf13/herring-cove.git
 +{{< /code >}}
 +
 +Cloning the project from the command line will conflict with our own version control. So, we need to remove the external git configuration that came with the clone of Herring Cove:
 +
 +{{< code file="remove-herring-cove-git.sh" >}}
 +rm -rf herring-cove/.git
 +{{< /code >}}
 +
 +We need content for Hugo to build. Let's add a quick `/about` page:
 +
 +```
 +hugo new about.md
 +```
 +
 +{{% note %}}
 +The preceding example for the about page leverages archetypes to scaffold a new content file with preconfigured front matter. [Find out more about Hugo's archetypes](/content-management/archetypes/).
 +{{% /note %}}
 +
 +Now you can edit `contents/about.md` in your text editor of choice, but this is not necessary for the purposes of this guide. Running the following command will build your Hugo site into the `public` directory.
 +
 +Once the website is build, it's a good idea to run the following command to start a local server and ensure you're changes have been implemented:
 +
 +```
 +hugo server --theme=herring-cove
 +```
 +
 +If everything is fine, you should see something similar to the image below when you go to <http://localhost:1313> in your browser.
 +
 +![][1]
 +
 +## Set up Version Control in Git
 +
 +Adding Git to your project is done by running the `git init` command from the root directory of your project.
 +
 +```
 +git init
 +```
 +
 +Running `git status` at this point will show you the following entries: the `config.toml` file, the `themes` directory, the `contents` directory, and the `public` directory. However, we don't want the `public` directory version controlled because Wercker is responsible for generating the finished website later on. Therefore, we'll add a `.gitignore` file to our project that will exclude the `/public` directory from being tracked by Git:
 +
 +{{< code file="gitignore.sh" >}}
 +echo "/public" >> .gitignore
 +{{< /code >}}
 +
 +Wercker might complain when we try to build the site later on because we currently do not have any static files outside of the `themes` directory. We simply have to add *any* file to the static folder to prevent Wercker from complaining. To keep this guide simple, let's add a `robots.txt`. The following command creates the file in `/static`. The contents of the `robots.txt` lets search engines know they have full access to crawl the published website:
 +
 +{{< code file="addrobotstxt.sh" >}}
 +echo "User-agent: *\nDisallow:" > static/robots.txt
 +{{< /code >}}
 +
 +Now we need to add (i.e., [stage [see Git documentation]][gitbasics]) and commit all of our changes in the repository into Git:
 +
 +```
 +git commit -a -m "Initial commit"
 +```
 +
 +## Add the Project to GitHub
 +
 +Now we need to create a new repository on GitHub. Once you are signed in to GitHub, you can add a new repository by clicking on the **&#43;&#9660;** dropdown at the top right or by going to [https://github.com/new](https://github.com)..
 +
 +We then choose a name for the project (`hugo-wercker-example`). When clicking on create repository GitHub displays the commands for adding an existing project to the site. The commands shown below are the ones used for this site, if you're following along you will need to use the ones shown by GitHub. Once we've run those commands the project is in GitHub and we can move on to setting up the Wercker configuration. Be sure to replace `YourUserName` with your GitHub account/username:
 +
 +{{< code file="setup-gh-repo.sh" >}}
 +git remote add origin git@github.com:YourUsername/hugo-wercker-example.git
 +git push -u origin master
 +{{< /code >}}
 +
 +![][2]
 +
 +## Set Up Wercker
 +
++To sign up for a free Wercker account, go to <https://www.wercker.com> and click the **Sign Up** button on the top right of the home screen.
 +
 +![][3]
 +
 +### Register for Wercker with Your GitHub Account
 +
 +Sign up for Wercker using your GitHub credentials. If you don't have a GitHub account, or don't want to use it for your account, you have the option to register with a username and password as well. However, the second half of this guide---devoted to hosting your website on GitHub pages---will no longer be of interest to you.
 +
 +![][4]
 +
 +### Connect GitHub or Bitbucket
 +
 +After you are registered, you will need to link your GitHub or Bitbucket account to Wercker. You can link your account by navigating to your profile settings and then selecting "Git connections."
 +
 +![][17]
 +
 +If you registered for Wercker using GitHub, it will most likely look like the following image. To connect a missing service, click the **Connect** button, which may send you to either GitHub or Bitbucket to sign into your respective account.
 +
 +![][5]
 +
 +### Add Your Project
 +
 +Now that we've got all the preliminaries out of the way, it's time to set up our application. For this we click on the **+ Create** button next to Applications and choose GitHub as our provider.
 +
 +![][6]
 +
 +### Select a Repository
 +
 +When selecting GitHub, Wercker will show all your GitHub repositories. You have the option to filter repositories using the search input at the top of the repositories list. Once you have your repository selected, click the **Use selected repo** button.
 +
 +![][7]
 +
 +### Select the Repository Owner
 +
 +In the next step, Wercker asks you to select the repository owner. Select your GitHub account and continue.
 +
 +![][8]
 +
 +### Configure Access
 +
 +{{% note %}}
 +This guide assumes you are using a public GitHub repository and understand that the [published GitHub Pages website will be available to everyone](https://help.github.com/articles/what-is-github-pages/#usage-limits).
 +{{%/note %}}
 +
 +This step can be slightly tricky. Wercker does not have privileges to check out your private projects by default and therefore needs your permission to add a deploy key to your repository. By selecting the first option, you're simply allowing Wercker to check out the code via the same methods available to anyone visiting the project on GitHub.
 +
 +![][9]
 +
 +### Wercker.yml
 +
 +Wercker will now attempt to create an initial `wercker.yml` file for you. More specifically, it will create a code block within the Wercker interface that you can copy to your finished file. Wercker gives us a `debian` box because our project does not have any special requirements.
 +
 +Now we need to create a *wercker.yml* file in the root of our project. This file will contain our Wercker app's configuration. After we finish setting up our app, we will expand the contents of this file to build and deploy our website.
 +
 +![][10]
 +
 +### Public or Private
 +
 +This is a personal choice. You can make an app public so that everyone can see more details about it. Keeping it private or public does not provide any overt benefits for you as the creator of the app. That said, [the app we are currently creating has been made public][publicappurl] to facilitate easier usage of this hosting and deployment guide.
 +
 +![][11]
 +
 +#### App Successfully Created
 +
 +The application is now added and Wercker will offer you the chance to trigger a build. However, we will decline the offer because we haven't yet pushed our `wercker.yml` file to our GitHub repository.
 +
 +![][12]
 +
 +### Add the Hugo-build Step
 +
 +Now we need to add the Wercker steps to our build process. First, we go to the "Registry" action in the top menu. When in the registry, we can search for "hugo build". Select the "Hugo-Build by **arjen**" step.
 +
 +![][13]
 +
 +### Use the Hugo-build Step
 +
 +A summary of very basic usage is available at the top of the details for the Hugo-Build step. Below the basic usage is the contents of the `README.md` file associated with the step's repository. `README.md`'s on Wercker usually contain more details about the advanced options and examples of usage.
 +
 +We're not going to use any of the advanced features of Hugo-Build in this guide. Let's return to our project and add the first section of details we need to our `wercker.yml`.
 +
 +{{% warning "Hugo Version in `wercker.yml`" %}}
 +The docs are a work in progress. As such, the `version` represented in this guide may not represent the version you've been using for local development. Be sure to use the appropriate Hugo version for your build step.
 +{{% /warning %}}
 +
 +{{< code file="wercker-build-step.yml" >}}
 +box: debian
 +build:
 +  steps:
 +    - arjen/hugo-build:
 +        version: "0.17"
 +        theme: herring-cove
 +        flags: --buildDrafts=true
 +{{< /code >}}
 +
 +We can conclude this first step by pushing our `wercker.yml` to our GitHub repository and then seeing the magic at work within Wercker's interface.
 +
 +{{< code file="push-wecker-to-gh.sh" >}}
 +git commit -a -m "Add wercker.yml"
 +git push origin master
 +{{< /code >}}
 +
 +If completed and successful, a green check mark should appear in the commit column of your first build. However, this is only the build step. We still need to deploy the website to our free hosting on GitHub Pages. If you would like more details about the build, you can click the commit hash.
 +
 +![][14]
 +
 +### Add a GitHub Pages Deploy Step to `wercker.yml`
 +
 +In order to deploy to GitHub Pages, we need to add a deploy step to our `wercker.yml`. We are going to add `lukevevier/gh-pages`, the most popular GitHub Pages step in the Wercker Steps repository. Additionally, we need to ensure the box Wercker uses for our deployments has git and ssh installed. We can do this using the `install-packages` command. Here is our *final* `wercker.yml` file:
 +
 +{{< code file="wercker.yml" >}}
 +box: debian
 +build:
 +  steps:
 +    - arjen/hugo-build:
 +        version: "0.17"
 +        theme: herring-cove
 +        flags: --buildDrafts=true
 +deploy:
 +  steps:
 +    - install-packages:
 +        packages: git ssh-client
 +    - lukevivier/gh-pages@0.2.1:
 +        token: $GIT_TOKEN
 +        domain: hugo-wercker.ig.nore.me
 +        basedir: public
 +{{< /code >}}
 +
 +### How does the GitHub Pages Configuration Work?
 +
 +We've provided a some important information in our `wercker.yml`. First, we've added the domain we want to use for our published website. Configuring the domain here will ensure that GitHub Pages is aware of the domain we want to use.
 +
 +Secondly, we've configured the `basedir` to `public`. This is the directory that will be used as the website on GitHub Pages. `public` is also the default publishing directory in Hugo. (For more information, see [hugo's configuration docs][hugoconfig]).
 +
 +Lastly, you'll notice a `$GIT_TOKEN` variable. This is used for pushing our changes to GitHub. We will need to configure this token before Wercker can build our website.
 +
 +### Set the App's Deploy Target
 +
 +We can set our deploy target by going to our app's settings and clicking on **Deploy targets**. Now select **Add deploy target** and then **Custom deploy**.
 +
 +![][15]
 +
 +### Configure the Deploy Step in Wercker
 +
 +The next screen requires you fill in the deploy target name.
 +
 +1. Make sure you enable **auto deploy** from the **master** branch.
 +2. Add a variable for the **GIT_TOKEN**. You'll need to create an access token in GitHub. Follow the directions in [GitHub help][accesstokenghhelp].
 +3. With the deploy step configured in Wercker, we can push the updated wercker.yml file to GitHub and it will create the GitHub pages site for us.
 +
 +The website described in this guide is available at <http://hugo-wercker.ig.nore.me>.
 +
 +![][16]
 +
 +## Conclusion
 +
 +Once this workflow is established, you can update your website automatically by pushing any content changes to your GitHub repository.
 +
 +### Code for the Wercker Deployment Guide
 +
 +[The source code for the site used in this guide is available on GitHub][guidesource], as is the [Wercker Hugo Build step][guidestep].
 +
 +If you want to see an example of how you can deploy to S3 instead of GitHub pages, check [Wercker's documentation][werckerdocs] for guidance on setup.
 +
 +[1]: /images/hosting-and-deployment/deployment-with-wercker/creating-a-basic-hugo-site.png
 +[2]: /images/hosting-and-deployment/deployment-with-wercker/adding-the-project-to-github.png
 +[3]: /images/hosting-and-deployment/deployment-with-wercker/wercker-sign-up.png
 +[4]: /images/hosting-and-deployment/deployment-with-wercker/wercker-sign-up-page.png
 +[5]: /images/hosting-and-deployment/deployment-with-wercker/wercker-git-connections.png
 +[6]: /images/hosting-and-deployment/deployment-with-wercker/wercker-add-app.png
 +[7]: /images/hosting-and-deployment/deployment-with-wercker/wercker-select-repository.png
 +[8]: /images/hosting-and-deployment/deployment-with-wercker/wercker-select-owner.png
 +[9]: /images/hosting-and-deployment/deployment-with-wercker/wercker-access.png
 +[10]: /images/hosting-and-deployment/deployment-with-wercker/werckeryml.png
 +[11]: /images/hosting-and-deployment/deployment-with-wercker/public-or-not.png
 +[12]: /images/hosting-and-deployment/deployment-with-wercker/and-we-ve-got-an-app.png
 +[13]: /images/hosting-and-deployment/deployment-with-wercker/wercker-search.png
 +[14]: /images/hosting-and-deployment/deployment-with-wercker/using-hugo-build.png
 +[15]: /images/hosting-and-deployment/deployment-with-wercker/adding-a-github-pages-step.png
 +[16]: /images/hosting-and-deployment/deployment-with-wercker/configure-the-deploy-step.png
 +[17]: /images/hosting-and-deployment/deployment-with-wercker/wercker-account-settings.png
 +
 +
 +[accesstokenghhelp]: https://help.github.com/articles/creating-an-access-token-for-command-line-use/
 +[basicusage]: /getting-started/usage/
 +[ghsignup]: https://github.com/join
 +[gitbasics]: https://git-scm.com/book/en/v2/Getting-Started-Git-Basics
 +[githubhelp]: https://help.github.com/articles/set-up-git/
 +[guidesource]: https://github.com/ArjenSchwarz/hugo-wercker-example
 +[guidestep]: https://github.com/ArjenSchwarz/wercker-step-hugo-build
 +[Herring Cove theme]: https://github.com/spf13/herring-cove
 +[hugoconfig]: /getting-started/configuration/
 +[publicappurl]: https://app.wercker.com/#applications/5586dcbdaf7de9c51b02b0d5
 +[quickstart]: /getting-started/quick-start/
 +[werckerdocs]: http://devcenter.wercker.com/docs/deploy/s3.html
index e5dbbefacc4c8072bc9990bd86e2bc84252fa7c7,0000000000000000000000000000000000000000..01f8c2fc2059e39c2a52168d2c7d6b9f62a79437
mode 100644,000000..100644
--- /dev/null
@@@ -1,272 -1,0 +1,279 @@@
++[[tweet]]
++name = "Joshua Steven‏‏"
++twitter_handle = "@jscarto"
++quote = "Can't overstate how much I enjoy <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a>. My site is relatively small, but *18 ms* to build the whole thing made template development and proofing a breeze."
++link = "https://twitter.com/jscarto/status/1039648827815485440"
++date = 2018-09-12T00:00:00Z
++
 +[[tweet]]
 +name = "Jens Munch"
 +twitter_handle = "@jensamunch"
 +quote = "Hugo is really, really incredible... Now does resizing/resampling of images as well! Crazy that something so fast can be a static site generator... Amazing open-source project."
 +link = "https://twitter.com/jensamunch/status/948533063537086464"
 +date = 2018-01-03T04:00:00Z
 +
 +[[tweet]]
 +name = "carriecoxwell"
 +twitter_handle = "@carriecoxwell"
 +quote = "Having a lot of fun with <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a>! It's exactly what I didn't even know I wanted."
 +link = "https://twitter.com/carriecoxwell/status/948402470144872448"
 +date = 2018-01-03T03:00:00Z
 +
 +[[tweet]]
 +name = "STOQE"
 +twitter_handle = "@STOQE"
 +quote = "I fear <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a> v0.22 might be so fast it creates a code vortex that time-warps me back to a time I used Wordpress. <a href='https://twitter.com/hashtag/gasp?src=hash'>#gasp</a>"
 +link = "https://twitter.com/STOQE/status/874184881701494784"
 +date = 2017-06-12T00:00:00Z
 +
 +[[tweet]]
 +name = "Christophe Diericx"
 +twitter_handle = "@spcrngr_"
 +quote = "The more I use <a href='https://gohugo.io' target='_blank'>gohugo.io</a>, the more I really like it. Super intuitive/powerful static site generator...great job <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a>"
 +link = "https://twitter.com/spcrngr_/status/870863020905435136"
 +date = 2017-06-03T00:00:00Z
 +
 +[[tweet]]
 +name = "marcoscan"
 +twitter_handle = "@marcoscan"
 +quote = "Blog migrated from <a href='https://twitter.com/WordPress' target='_blank'>@WordPress</a> to <a href='https://twitter.com/GoHugoIO' target='_blank'>@GoHugoIO</a>, with a little refresh of my theme, Vim shortcuts and a full featured deploy script <a href='https://twitter.com/hashtag/gohugo?src=hash' target='_blank'>#gohugo</a>"
 +link = "https://twitter.com/marcoscan/status/869661175960752129"
 +date = 2017-05-30T00:00:00Z
 +
 +[[tweet]]
 +name = "Sandra Kuipers"
 +twitter_handle = "@SKuipersDesign"
 +quote = "Who knew static site building could be fun 🤔 Learning <a href='https://twitter.com/hashtag/gohugo?src=hash'>#gohugo</a> today"
 +link = "https://twitter.com/SKuipersDesign/status/868796256902029312"
 +date = 2017-05-28T00:00:00Z
 +
 +[[tweet]]
 +name = "Netlify"
 +twitter_handle = "@Netlify"
 +quote = "Top Ten Static Site Generators of 2017. Congrats to the top 3: 1. <a href='https://twitter.com/jekyllrb'>@Jekyllrb</a> 2. <a href='https://twitter.com/GoHugoIO'>@GoHugoIO</a> 3. <a href='https://twitter.com/hexojs'>@hexojs</a>"
 +link = "https://twitter.com/Netlify/status/868122279221362688"
 +date = 2017-05-26T00:00:00Z
 +
 +[[tweet]]
 +name = "Phil Hawksworth"
 +twitter_handle = "@philhawksworth"
 +quote = "I've been keen on <a href='https://twitter.com/hashtag/JAMStack?src=hash' target='_blank'>#JAMStack</a> for some time, but <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a> is wooing me all over again. Great fun to build with. And speeeeedy."
 +link = "https://twitter.com/philhawksworth/status/866684170512326657"
 +date = 2017-05-22T00:00:00Z
 +
 +[[tweet]]
 +name = "Aras Pranckevicius"
 +twitter_handle = "@aras_p"
 +quote = "I've probably said it before...but having Hugo rebuild the whole website in 300ms is amazing. <a href='https://gohugo.io' target='_blank'>gohugo.io</a>, <a href='https://twitter.com/hashtag/gohugo' target='_blank'>#gohugo</a>"
 +link = "https://twitter.com/aras_p/status/861157286823288832"
 +date = 2017-05-07T00:00:00Z
 +
 +[[tweet]]
 +name = "Hans Beck"
 +twitter_handle = "@EnrichedGamesHB"
 +quote = "Diving deeper into <a href='https://twitter.com/GoHugoIO' target='_blank' rel='noopener noreferrer'>@GoHugoIO</a>. A lot of docs there, top work! But I've the impressed that <a href='https://twitter.com/hashtag/gohugo' target='_blank' rel='noopener noreferrer'>#gohugo</a> is far easier than its feels from the docs!"
 +link = "https://twitter.com/EnrichedGamesHB/status/836854762440130560"
 +date = 2017-03-01T00:00:00Z
 +
 +[[tweet]]
 +name = "Alan Richardson"
 +twitter_handle = "@eviltester"
 +quote = "I migrated the <a href='https://twitter.com/BlackOpsTesting' target='_blank' rel='noopener noreferrer'> @BlackOpsTesting </a>.com website from docpad to Hugo last weekend. http://gohugo.io/ Super Fast HTML Generation <a href='https://twitter.com/spf13' target='_blank' rel='noopener noreferrer'> @spf13 </a>"
 +link = "https://twitter.com/eviltester/status/553520335115808768"
 +date = 2015-01-09T00:00:00Z
 +
 +[[tweet]]
 +name = "Janez Čadež‏"
 +twitter_handle = "@jamziSLO"
 +quote = "Building <a href='https://twitter.com/garazaFRI' target='_blank' rel='noopener noreferrer'>@garazaFRI</a> website in <a href='https://twitter.com/hashtag/hugo' target='_blank' rel='noopener noreferrer'>#hugo</a>. This static site generator is soooo damn fast! <a href='https://twitter.com/hashtag/gohugo' target='_blank' rel='noopener noreferrer'>#gohugo</a> <a href='https://twitter.com/hashtag/golang' target='_blank' rel='noopener noreferrer'>#golang</a>"
 +link = "https://twitter.com/jamziSLO/status/817720283977183234"
 +date = 2017-01-07T00:00:00Z
 +
 +[[tweet]]
 +name = "Execute‏‏"
 +twitter_handle = "@executerun"
 +quote = "Hah, <a href='https://twitter.com/hashtag/gohugo' target='_blank' rel='noopener noreferrer'>#gohugo</a>. I was working with <a href='https://twitter.com/hashtag/gohugo' target='_blank' rel='noopener noreferrer'>#gohugo</a> on <a href='https://twitter.com/hashtag/linux' target='_blank' rel='noopener noreferrer'>#linux</a> but now I realised how easy is to set-up it on <a href='https://twitter.com/hashtag/windows' target='_blank' rel='noopener noreferrer'>#windows</a>. Just need to add binary to <a href='https://twitter.com/hashtag/path' target='_blank' rel='noopener noreferrer'>#path</a>!"
 +link = "https://twitter.com/executerun/status/809753145270272005"
 +date = 2016-12-16T00:00:00Z
 +
 +[[tweet]]
 +name = "Baron Schwartz"
 +twitter_handle = "@xaprb"
 +quote = "Hugo is impressively capable. It's a static site generator by <a href='https://twitter.com/spf13'> @spf13 </a> written in <a href='https://twitter.com/hashtag/golang?src=hash'> #golang </a> . Just upgraded to latest release; very powerful.  "
 +link = "https://twitter.com/xaprb/status/556894866488455169"
 +date = 2015-01-18T00:00:00Z
 +
 +[[tweet]]
 +name = "Dave Cottlehuber"
 +twitter_handle = "@dch__"
 +quote = "I just fell in love with #hugo, a static site/blog engine written by @spf13 in #golang  + stellar docs"
 +link = "https://twitter.com/dch__/status/460158115498176512"
 +date = 2014-04-26T00:00:00Z
 +
 +[[tweet]]
 +name = "David Caunt"
 +twitter_handle = "@dcaunt"
 +quote = "I had a play with Hugo and it was good, uses Markdown files for content"
 +link = "https://twitter.com/dcaunt/statuses/406466996277374976"
 +date = 2013-11-29T00:00:00Z
 +
 +[[tweet]]
 +name = "David Gay"
 +twitter_handle = "@oddshocks"
 +quote = "Hugo is super-rad."
 +link = "https://twitter.com/oddshocks/statuses/405083217893421056"
 +date = 2013-11-25T00:00:00Z
 +
 +[[tweet]]
 +name = "Diti"
 +twitter_handle = "@DitiPengi"
 +quote = "The dev version of Hugo is AWESOME! &lt;3 I promise, I will try to learn go ASAP and help contribute to the project! Just too great!"
 +link = "https://twitter.com/DitiPengi/status/472470974051676160"
 +date = 2014-05-30T00:00:00Z
 +
 +[[tweet]]
 +name = "Douglas Stephen "
 +twitter_handle = "@DougStephenJr"
 +quote = "Even as a long-time Octopress fan, I’ve gotta admit that this project Hugo looks very very cool"
 +link = "https://twitter.com/DougStephenJr/statuses/364512471660249088"
 +date = 2013-08-05T00:00:00Z
 +
 +[[tweet]]
 +name = "Hugo Rodger-Brown"
 +twitter_handle = "@hugorodgerbrown"
 +quote = "Finally someone builds me my own static site generator"
 +link = "https://twitter.com/hugorodgerbrown/statuses/364417910153818112"
 +date = 2013-05-08T00:00:00Z
 +
 +[[tweet]]
 +name = "Hugo Roy"
 +twitter_handle = "@hugoroyd"
 +quote = "Finally the answer to the question my parents have been asking: What does Hugo do?"
 +link = "https://twitter.com/hugoroyd/status/501704796727173120"
 +date = 2014-08-19T00:00:00Z
 +
 +[[tweet]]
 +name = "Daniel Miessler"
 +twitter_handle = "@DanielMiessler"
 +quote = "Websites for named vulnerabilities should run on static site generator platforms like Hugo. Read-only + burst traffic = static."
 +link = "https://twitter.com/DanielMiessler/status/704703841673957376"
 +date = 2016-03-01T00:00:00Z
 +
 +[[tweet]]
 +name = "Javier Segura"
 +twitter_handle = "@jsegura"
 +quote = "Another site generated with Hugo here! I'm getting in love with it."
 +link = "https://twitter.com/jsegura/status/465978434154659841"
 +date = 2014-05-12T00:00:00Z
 +
 +[[tweet]]
 +name = "Jim Biancolo"
 +twitter_handle = "@jimbiancolo"
 +quote = "I’m loving the static site generator renaissance we are currently enjoying. Hugo is new, looks great, written in Go"
 +link = "https://twitter.com/jimbiancolo/statuses/408678420348813314"
 +date = 2013-05-12T00:00:00Z
 +
 +[[tweet]]
 +name = "Jip J. Dekker"
 +twitter_handle = "@jipjdekker"
 +quote = "Building a personal website in Hugo. Works like a charm. And written in @golang!"
 +link = "https://twitter.com/jipjdekker/status/413783548735152131"
 +date = 2013-12-19T00:00:00Z
 +
 +[[tweet]]
 +name = "Jose Gonzalvo"
 +twitter_handle = "@jgonzalvo"
 +quote = "Checking out Hugo; Loving it so far. Like Jekyll but not so blog-oriented and written in go"
 +link = "https://twitter.com/jgonzalvo/statuses/408177855819173888"
 +date = 2013-12-04T00:00:00Z
 +
 +[[tweet]]
 +name = "Josh Matz"
 +twitter_handle = "@joshmatz"
 +quote = "A static site generator without the long build times? Yes, please!"
 +link = "https://twitter.com/joshmatz/statuses/364437436870696960"
 +date = 2013-08-05T00:00:00Z
 +
 +[[tweet]]
 +name = "Kieran Healy"
 +twitter_handle = "@kjhealy"
 +quote = "OK, so in today's speed battle of static site generators, @spf13's hugo is kicking everyone's ass, by miles."
 +link = "https://twitter.com/kjhealy/status/437349384809115648"
 +date = 2014-02-22T00:00:00Z
 +
 +[[tweet]]
 +name = "Ludovic Chabant"
 +twitter_handle = "@ludovicchabant"
 +quote = "Good work on Hugo, I’m impressed with the speed!"
 +link = "https://twitter.com/ludovicchabant/statuses/408806199602053120"
 +date = 2013-12-06T00:00:00Z
 +
 +[[tweet]]
 +name = "Luke Holder"
 +twitter_handle = "@lukeholder"
 +quote = "this is AWESOME. a single little executable and so fast."
 +link = "https://twitter.com/lukeholder/status/430352287936946176"
 +date = 2014-02-03T00:00:00Z
 +
 +[[tweet]]
 +name = "Markus Eliasson"
 +twitter_handle = "@markuseliasson"
 +quote = "Hugo is fast, dead simple to setup and well documented"
 +link = "https://twitter.com/markuseliasson/status/501594865877008384"
 +date = 2014-08-19T00:00:00Z
 +
 +[[tweet]]
 +name = "mercime"
 +twitter_handle = "@mercime_one"
 +quote = "Hugo: Makes the Web Fun Again"
 +link = "https://twitter.com/mercime_one/status/500547145087205377"
 +date = 2014-08-16T00:00:00Z
 +
 +[[tweet]]
 +name = "Michael Whatcott"
 +twitter_handle = "@mdwhatcott"
 +quote = "One more satisfied #Hugo blogger. Thanks @spf13 and friends!"
 +link = "https://twitter.com/mdwhatcott/status/469980686531571712"
 +date = 2014-05-23T00:00:00Z
 +
 +[[tweet]]
 +name = "Nathan Toups"
 +twitter_handle = "@rojoroboto"
 +quote = "I love Hugo! My site is generated with it now http://rjrbt.io"
 +link = "https://twitter.com/rojoroboto/status/423439915620106242"
 +date = 2014-01-15T00:00:00Z
 +
 +[[tweet]]
 +name = "Ruben Solvang"
 +twitter_handle = "@messo85"
 +quote = "#Hugo is the new @jekyllrb / @middlemanapp! Faster, easier and runs everywhere."
 +link = "https://twitter.com/messo85/status/472825062027182081"
 +date = 2014-05-31T00:00:00Z
 +
 +[[tweet]]
 +name = "Ryan Martinsen"
 +twitter_handle = "@popthestack"
 +quote = "Also, I re-launched my blog (it looks the same as before) using Hugo, a *fast* static engine. Very happy with it.  <a href='http://gohugo.io/'>gohugo.io</a>"
 +link = "https://twitter.com/popthestack/status/549972754125307904"
 +date = 2014-12-30T00:00:00Z
 +
 +[[tweet]]
 +name = "The Lone Cuber"
 +twitter_handle = "@TheLoneCuber"
 +quote = "Jekyll is dead to me these days though... long live Hugo! Hugo is *by far* the best in its field. Thanks for making it happen."
 +link = "https://twitter.com/TheLoneCuber/status/495716684456398848"
 +date = 2014-08-02T00:00:00Z
 +
 +[[tweet]]
 +name = "The Lone Cuber"
 +twitter_handle = "@TheLoneCuber"
 +quote = "Finally, a publishing platform that's a joy to use. #NoMoreBarriers"
 +link = "https://twitter.com/TheLoneCuber/status/495731334711488512"
 +date = 2014-08-02T00:00:00Z
 +
 +[[tweet]]
 +name = "WorkHTML"
 +twitter_handle = "@workhtml"
 +quote = "<a href='https://twitter.com/hashtag/Hugo?src=hash'> #Hugo </a> A very good alternative for <a href='https://twitter.com/hashtag/wordpress?src=hash'> #wordpress </a> !!! A fast and modern static website engine <a href='http://gohugo.io/'> gohugo.io </a>"
 +link = "https://twitter.com/workhtml/status/563064361301053440"
 +date = 2015-02-04T00:00:00Z
index 8033bcd56f5b29c8695c409848f33f1a0aa673d0,0000000000000000000000000000000000000000..86d67ce08603565250f3ea95d159c796eb56b6ca
mode 100644,000000..100644
--- /dev/null
@@@ -1,31 -1,0 +1,31 @@@
- command = "hugo --minify"
 +[build]
 +publish = "public"
++command = "hugo"
 +
 +[context.production.environment]
 +HUGO_VERSION = "0.48"
 +HUGO_ENV = "production"
 +HUGO_ENABLEGITINFO = "true"
 +
 +[context.split1]
 +command = "hugo --enableGitInfo"
 +
 +[context.split1.environment]
 +HUGO_VERSION = "0.48"
 +HUGO_ENV = "production"
 +
 +[context.deploy-preview]
 +command = "hugo --buildFuture -b $DEPLOY_PRIME_URL"
 +
 +[context.deploy-preview.environment]
 +HUGO_VERSION = "0.48"
 +
 +[context.branch-deploy]
 +command = "hugo -b $DEPLOY_PRIME_URL"
 +
 +[context.branch-deploy.environment]
 +HUGO_VERSION = "0.48"
 +
 +[context.next.environment]
 +HUGO_ENABLEGITINFO = "true"
 +