writeSource(t, fs, filepath.Join("content", "sect", "_index.md"), `---
title: MySection
-url: foo.html
+url: /my-section/
---
My Section Content
`)
require.NoError(t, h.Build(BuildCfg{}))
- th.assertFileContent(filepath.Join("public", "sect", "index.html"), "My Section")
+ th.assertFileContent(filepath.Join("public", "my-section", "index.html"), "My Section")
+ th.assertFileContent(filepath.Join("public", "my-section", "page", "1", "index.html"), `content="0; url=http://bep.is/base/my-section/"`)
s := h.Sites[0]
require.Equal(t, "/base/sect1/regular1/", p.URL())
- // Section with front matter and url set (which should not be used)
+ // Section with front matter and url set
sect := s.getPage(KindSection, "sect")
- require.Equal(t, "/base/sect/", sect.URL())
- require.Equal(t, "http://bep.is/base/sect/", sect.Permalink())
- require.Equal(t, "/base/sect/", sect.RelPermalink())
+ require.Equal(t, "/base/my-section/", sect.URL())
+ require.Equal(t, "http://bep.is/base/my-section/", sect.Permalink())
+ require.Equal(t, "/base/my-section/", sect.RelPermalink())
// Home page without front matter
require.Equal(t, "/base/", s.getPage(KindHome).URL())
// Whether this is a multihost multilingual setup.
IsMultihost bool
- // Page.URLPath.URL. Will override any Slug etc. for regular pages.
+ // URL from front matter if set. Will override any Slug etc.
URL string
// Used to create paginator links.
Sections: p.sections,
UglyURLs: p.s.Info.uglyURLs(p),
Dir: filepath.ToSlash(p.Source.Dir()),
- URL: p.URLPath.URL,
+ URL: p.URLPath.frontMatterURL,
IsMultihost: p.s.owner.IsMultihost(),
}
isUgly = true
}
- if d.Kind != KindPage && len(d.Sections) > 0 {
+ if d.Kind != KindPage && d.URL == "" && len(d.Sections) > 0 {
if d.ExpandedPermalink != "" {
pagePath = filepath.Join(pagePath, d.ExpandedPermalink)
} else {
pagePath = filepath.Join(pagePath, d.Type.Path)
}
- if d.Kind == KindPage {
- // Always use URL if it's specified
- if d.URL != "" {
- if d.IsMultihost && d.LangPrefix != "" && !strings.HasPrefix(d.URL, "/"+d.LangPrefix) {
- pagePath = filepath.Join(d.LangPrefix, pagePath, d.URL)
- } else {
- pagePath = filepath.Join(pagePath, d.URL)
- }
- if strings.HasSuffix(d.URL, "/") || !strings.Contains(d.URL, ".") {
- pagePath = filepath.Join(pagePath, d.Type.BaseName+d.Type.MediaType.FullSuffix())
- }
+ if d.Kind != KindHome && d.URL != "" {
+ if d.IsMultihost && d.LangPrefix != "" && !strings.HasPrefix(d.URL, "/"+d.LangPrefix) {
+ pagePath = filepath.Join(d.LangPrefix, pagePath, d.URL)
} else {
- if d.ExpandedPermalink != "" {
- pagePath = filepath.Join(pagePath, d.ExpandedPermalink)
-
- } else {
- if d.Dir != "" {
- pagePath = filepath.Join(pagePath, d.Dir)
- }
- if d.BaseName != "" {
- pagePath = filepath.Join(pagePath, d.BaseName)
- }
- }
+ pagePath = filepath.Join(pagePath, d.URL)
+ }
+ if d.Addends != "" {
+ pagePath = filepath.Join(pagePath, d.Addends)
+ } else if strings.HasSuffix(d.URL, "/") || !strings.Contains(d.URL, ".") {
+ pagePath = filepath.Join(pagePath, d.Type.BaseName+d.Type.MediaType.FullSuffix())
+ }
+ } else if d.Kind == KindPage {
+ if d.ExpandedPermalink != "" {
+ pagePath = filepath.Join(pagePath, d.ExpandedPermalink)
- if d.Addends != "" {
- pagePath = filepath.Join(pagePath, d.Addends)
+ } else {
+ if d.Dir != "" {
+ pagePath = filepath.Join(pagePath, d.Dir)
}
-
- if isUgly {
- pagePath += d.Type.MediaType.Delimiter + d.Type.MediaType.Suffix
- } else {
- pagePath = filepath.Join(pagePath, d.Type.BaseName+d.Type.MediaType.FullSuffix())
+ if d.BaseName != "" {
+ pagePath = filepath.Join(pagePath, d.BaseName)
}
+ }
- if d.LangPrefix != "" {
- pagePath = filepath.Join(d.LangPrefix, pagePath)
- }
+ if d.Addends != "" {
+ pagePath = filepath.Join(pagePath, d.Addends)
+ }
+
+ if isUgly {
+ pagePath += d.Type.MediaType.Delimiter + d.Type.MediaType.Suffix
+ } else {
+ pagePath = filepath.Join(pagePath, d.Type.BaseName+d.Type.MediaType.FullSuffix())
+ }
+
+ if d.LangPrefix != "" {
+ pagePath = filepath.Join(d.LangPrefix, pagePath)
}
} else {
if d.Addends != "" {