mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
10 lines
No EOL
435 B
Text
10 lines
No EOL
435 B
Text
{{- /* generates an uphill path from the current page to the root of the server */}}
|
|
{{- $subdir := strings.TrimSuffix (relLangURL "/") (relLangURL "") }}
|
|
{{- $relBaseUri := .RelPermalink }}
|
|
{{- $relBaseUri = replaceRE "/[^/]*$" "" $relBaseUri }}
|
|
{{- $relBaseUri = replaceRE "/[^/]*" "/.." $relBaseUri }}
|
|
{{- $relBaseUri = trim $relBaseUri "/" }}
|
|
{{- if not $relBaseUri }}
|
|
{{- $relBaseUri = "." }}
|
|
{{- end }}
|
|
{{- return $relBaseUri }} |