mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-29 22:29:56 +02:00
fixed trailing dir slash when using slug
See testcase, dir + slug contained double slash when dir had a trailing slash. Signed-off-by: Noah Campbell <noahcampbell@gmail.com>
This commit is contained in:
committed by
Noah Campbell
parent
e425226a28
commit
860f982cc4
@@ -265,7 +265,7 @@ func (p *Page) permalink() (*url.URL, error) {
|
||||
if p.Site.Config != nil && p.Site.Config.UglyUrls {
|
||||
permalink = path.Join(dir, p.Slug, p.Extension)
|
||||
} else {
|
||||
permalink = dir + "/" + p.Slug + "/"
|
||||
permalink = path.Join(dir, p.Slug) + "/"
|
||||
}
|
||||
} else if len(pUrl) > 2 {
|
||||
permalink = pUrl
|
||||
|
Reference in New Issue
Block a user