Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-24examples: Remove unneeded meta tag from blog exampleChristian Oliff
```html <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> ``` This was only needed for IE10 and lower (which are no longer supported) and chromeframe which was a Google plugin for IE8 and lower and was discontinued many years ago. So this meta tag can be safely removed.
2020-01-19examples: Fix blog not buildingJonathan Ling
The example blog had not been updated for some time and I had to restructure it a little bit. Fixes #6752 Changed tag and category directory structure
2019-10-14examples: Replace .RSSLinkBjørn Erik Pedersen
Fixes #6037
2019-08-01examples: Fix multilingual example compatibility with latest versionRobin Andersson
2019-06-12examples: Update link to prevent redirectChristian Oliff
2019-06-12examples: Update URLsChristian Oliff
2017-09-27examples: Fix `now` usage in footerCameron Moore
2017-06-13examples: Update examples to point to gohugoio/hugoBjørn Erik Pedersen
2017-04-02docs, examples: Use TOML for i18n config filesAlbert Nigmatzianov
Fix #3200
2017-02-26docs: Update RSS docs with rssLimit changesCameron Moore
Side effect: remove unnecessary XML templates from example blog site. Fixes #3065
2017-01-03Update documentation and test for sitemap templateDaniel Lang
2016-11-23examples: Update blog examplebogem
Use RSSLink instead of deprecated RSSlink
2016-11-23examples: Update multilingual examplebogem
Use new i18n concept Fixes #2417
2016-10-24all: Unify case of config variable namesAlbert Nigmatzianov
All config variables starts with low-case and uses camelCase. If there is abbreviation at the beginning of the name, the whole abbreviation will be written in low-case. If there is abbreviation at the end of the name, the whole abbreviation will be written in upper-case. For example, rssURI.
2016-07-29examples: Add example for translation filesRichard Metzler
2015-12-27Update Hugo examplesdigitalcraftsman
2015-12-23Upgrade Bootswatch, Font Awesome and jQuery in examples/blogAnthony Fok
- Upgrade Bootswatch Yeti theme (3.2.0+3 → to 3.3.6) - Upgrade Font Awesome (4.2.0 → 4.5.0) - Upgrade jQuery (1.11.1 → 1.11.3) Also keep the upstream filenames, e.g. bootstrap.min.css rather than bootstrap.css for the minified CSS, and jquery-1.11.3.min.js rather than jquery.js for the minified jQuery.
2015-09-09Convert example/blog to use new syntax for Hugo v0.14+Anthony Fok
safeHtml → safeHTML, .Site.BaseUrl → .Site.BaseURL (Hmm... How did we miss that earlier?)
2015-05-07Fix multilingual styling with small screen.Egon Elbre
2015-05-07Added missing files, make the site look better.Egon Elbre
2015-05-07Fix multilingual site layouts/templates.Egon Elbre
2015-01-29[Docs] Complete the transition from "indexes" to "taxonomies" (almost)Anthony Fok
Also mention `.Site.Indexes` → `.Site.Taxonomies` as well as the upcoming `.Site.Recent` → `.Site.Pages` transitions.
2014-10-02Switch to new hompageKartik Singhal
2014-09-08A small fix and update to the multilingual exampleAnthony Fok
Enclose `{{ .Content }}` with a `{{ if .IsPage }}` test to avoid the "Content is not a field of struct type *hugolib.Node" error. Thanks to @spf13 for the tip! Fixes #366. Also update example to Hugo v0.12 conventions: - Convert config.yaml to config.toml to follow what `hugo new site /path/to/site` generates - Rename layouts/chrome to layouts/partials - Convert `template` calls to `partial` calls - Add .gitignore to ignore the `public` directory - Add README.md with pointers to discussions in issues to help bring newcomers up to speed with this multilingual example
2014-09-03Update example blog to Hugo v0.12 conventionsAnthony Fok
- Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1)
2014-05-10Add Sitemap documentation contentVincent Batoufflet
2014-04-27Adding example blogWilliam McGann
2013-12-28Example of a multilingual site.Egon Elbre