mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-24 21:56:05 +02:00
726 B
726 B
title, description, categories, keywords, menu, function, relatedFunctions, aliases
title | description | categories | keywords | menu | function | relatedFunctions | aliases | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
path.BaseName | BaseName returns the last element of a path, removing the extension if present. |
|
|
|
|
|
If PATH
is empty, .
is returned.
Note: On Windows, PATH
is converted to slash (/
) separators.
{{ path.BaseName "a/news.html" }} → "news"
{{ path.BaseName "news.html" }} → "news"
{{ path.BaseName "a/b/c" }} → "c"
{{ path.BaseName "/x/y/z/" }} → "z"