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
path: root/docs
AgeCommit message (Collapse)Author
2016-11-22docs: Add Pages to variables sectionBjørn Erik Pedersen
And some other minor doc fixes. Closes #2297 Closes #2649
2016-11-22docs: Add release notes about node to pageBjørn Erik Pedersen
Updates #2297
2016-11-22docs: Add sections on node now being a pageBjørn Erik Pedersen
Updates #2297
2016-11-22docs: Revise docs to reflect that Node is goneBjørn Erik Pedersen
Updates #2297
2016-11-22docs: Make the tools content page a section pageBjørn Erik Pedersen
Because it is the right solution and it the avoids naming conflict with section vs page. Updates #2297
2016-11-22docs: Fix list template linkBjørn Erik Pedersen
2016-11-20docs: Add a simple list templateBjørn Erik Pedersen
Fixes #2710
2016-11-19docs: Rename RSSlink to RSSLinkBjørn Erik Pedersen
The former will be deprecated.
2016-11-18docs: Add balaramadurai.net to the showcasebalaramadurai
2016-11-16tpl: Add imageConfig functionTristan Rice
Add imageConfig function which calls image.DecodeConfig and returns the height, width and color mode of the image. (#2677) This allows for more advanced image shortcodes and templates such as those required by AMP. layouts/shortcodes/amp-img.html ``` {{ $src := .Get "src" }} {{ $config := imageConfig (printf "/static/%s" $src) }} <amp-img src="{{$src}}" height="{{$config.Height}}" width="{{$config.Width}}" layout="responsive"> </amp-img> ```
2016-11-13docs: Fix typos in extras/scratch.mdRafael Monteiro
2016-11-06docs: Add article by Zetao YangAhmed Zetao Yang
2016-11-06docs: Compress Hugo logo (hugo.png)JoeArizona
2016-11-04docs: Update roadmapdigitalcraftsman
Closes #2666
2016-11-04docs: Link latest change as commit in the footerdigitalcraftsman
2016-11-04doc: Add a "Deployment with rsync" tutorial pageAdrien Poupin
This is kind of a generic process and not so difficult. It seems important to me that it should be documented.
2016-11-02docs: Remove non-showcase Hugo sitesBjørn Erik Pedersen
I.e. sites with no mention of Hugo or hugo etc. in the HTML source. Fixes #2655
2016-11-02Add GitInfoBjørn Erik Pedersen
This commit adds 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. The Git integrations should be fairly performant, but it adds "some time" to the build, somewhat depending on the Git history size. If you want, you can run without during development and turn it on when deploying to the live server: `hugo --enableGitInfo`. Fixes #2102
2016-11-01Revert "docs: Add www.bullion-investor.com to the showcase gallery"Bjørn Erik Pedersen
No hugo generator tag, probably not a Hugo a site, certainly not a showcase. This reverts commit b5bc74ca4609ce8cf77633c0f93fddc46814a35a.
2016-10-29docs: Add www.bullion-investor.com to the showcase galleryITSecMedia
2016-10-29docs: Add two articles written by Hash Borgirdigitalcraftsman
2016-10-25docs: Fix punctuation in content.mdSam Klein
- removed comma on line 16 to avoid confusion between clauses - added period to line 24 for consistency - clarified "read on" on line 30 to follow style above it while also verbally writing what the author seems to intend - removed "You probably know what to do." on line 30 due to wordiness that could lead to confusion and a drag in reading speed
2016-10-25docs: Add clearhaus.com to the showcaseteodorraul
2016-10-25docs: Fix typos in content sectionSam Klein
- changed preposition into intended infinitive for syntactical clarity - removed "easily" as it doesn't describe anything technical and is confusing (which is why the author may have used a preposition)
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-10-22docs: Clarify installation of themesdigitalcraftsman
2016-10-21docs: Improve instructions in quickstart.mdNicholas Thomson
2016-10-19docs: Add dmitriid.com to the showcaseDmitrii Dimandt
2016-10-17docs: Add singular/plural i18n exampleBjørn Erik Pedersen
2016-10-17docs: Add christianmendoza.me to the showcaseChristian Mendoza
2016-10-17docs: Add fixatom.com to the showcaseChen Fangzhou
2016-10-17docs: Add hugojoomla to the tools sectiondigitalcraftsman
2016-10-17docs: Remove merge artifactJános Illés
2016-10-16docs: Update link for Ace template sitedigitalcraftsman
2016-10-16docs: Add docs.eurie.io to the showcaseiktakahiro
2016-10-16docs: Add GitLab to Forestry.io integrationsdigitalcraftsman
2016-10-15Implement support for alias templatesNate Finch
This change adds a canonical alias.html template that is used for page redirects, and passes the page as data to the template under .Page Fixes #2533 Closes #2576
2016-10-15Updated link for Ace template sitevsopvsop
2016-10-14Use example.org for replace-this-with-your-hugo-site.comBjørn Erik Pedersen
Fixes #2575
2016-10-13Added GitLab to Forestry.io integrationsScott Gallant
2016-10-10docs: Remove deleted article "Hugo on Netlify — Insanely Fast Deploys"digitalcraftsman
2016-10-10docs: Add "Hugo on Netlify" article to press.mdvoom
2016-10-10docs: Add shapeshed.com to the showcaseGeorge Ornbo
2016-10-10docs: Add thecodeking.co.uk to the showcaseTheCodeKing
2016-10-10docs: Add Firebase Hosting to usage.mdMichael Bleigh
2016-10-10docs: Add Firebase Hosting to hosting providersMichael Bleigh
2016-10-10docs: Add webhook to tools for deploymentsAdnan Hajdarević
2016-10-10docs: Mention GitLab hosting supportRobert Schilling
2016-10-09docs: Add Forestry.io to the tools sectiondigitalcraftsman
2016-10-09docs: Refactor /docs to use the block keywordBjørn Erik Pedersen
Fixes #2226