mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-10-30 09:23:09 +00:00
Fix index page paths
This commit is contained in:
parent
3571ef67c1
commit
b250f9e4c5
10
dir.go
10
dir.go
|
@ -136,11 +136,11 @@ func (d *Dir) _read(srcDir, path string, task *Task, cfg *Config) error {
|
|||
path = "/" + strings.TrimSuffix(path, name)
|
||||
} else {
|
||||
path = "/" + strings.TrimSuffix(path, ext)
|
||||
}
|
||||
if task.UglyURLs {
|
||||
path += task.OutputExt
|
||||
} else {
|
||||
path += "/"
|
||||
if task.UglyURLs {
|
||||
path += task.OutputExt
|
||||
} else {
|
||||
path += "/"
|
||||
}
|
||||
}
|
||||
page.Path = path
|
||||
if permalink, ok := cfg.permalinks[d.Path]; ok {
|
||||
|
|
Loading…
Reference in a new issue