Files
hugo/content/functions/relLangURL.md
T
Bud Parr 7fd64f19c8 Merge bp/theme-design branch containing Bud Parr's new design
It's a beautiful thing. A thousand thanks, Bud.

See PR rdwatters/hugo-docs-concept#118
2017-05-26 14:25:22 -05:00

1.0 KiB

title, description, godocref, date, publishdate, lastmod, tags, categories, menu, ns, signature, workson, hugoversion, relatedfuncs, deprecated, aliases, needsexamples
title description godocref date publishdate lastmod tags categories menu ns signature workson hugoversion relatedfuncs deprecated aliases needsexamples
rellangurl Adds the relative URL with correct language prefix according to site configuration for multilingual. 2017-02-01 2017-02-01 2017-02-01
multilingual
i18n
urls
functions
docs
parent
functions
relLangURL INPUT
false
true

absLangURL and relLangURL functions are similar to their absURL and relURL relatives but will add the correct language prefix when the site is configured with more than one language. (See Configuring Multilingual.)

So for a site baseURL set to http://yoursite.com/hugo/ and the current language is en:

{{ "blog/" | absLangURL }}  "http://yoursite.com/hugo/en/blog/"
{{ "blog/" | relLangURL }}  "/hugo/en/blog/"