mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-15 05:53:09 +00:00
10 lines
344 B
Plaintext
10 lines
344 B
Plaintext
{{- range .Site.Params.docs.releases -}}
|
|
{{- if .redirect -}}
|
|
{{ urls.JoinPath .url "/*" }} {{ urls.JoinPath .redirect ":splat" }} 200
|
|
{{ end }}
|
|
{{- end -}}
|
|
{{ range $p := .Site.AllPages }}
|
|
{{- range .Aliases -}}
|
|
{{ if hasPrefix . "." }}{{ urls.JoinPath $p.RelPermalink . }}{{ else }}{{ . }}{{ end }} {{ $p.RelPermalink }}
|
|
{{ end }}
|
|
{{- end -}} |