mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-16 20:53:59 +02:00
hugolib: Remove Site.HomeAbsURL
It's not in use and after #12266 it's also not corret to use on its own (use .Site.Home.Permalink).
This commit is contained in:
@@ -598,18 +598,13 @@ func (h *HugoSites) fileEventsContentPaths(p []pathChange) []pathChange {
|
|||||||
return keepers
|
return keepers
|
||||||
}
|
}
|
||||||
|
|
||||||
// HomeAbsURL is a convenience method giving the absolute URL to the home page.
|
// SitemapAbsURL is a convenience method giving the absolute URL to the sitemap.
|
||||||
func (s *Site) HomeAbsURL() string {
|
func (s *Site) SitemapAbsURL() string {
|
||||||
base := ""
|
base := ""
|
||||||
if len(s.conf.Languages) > 1 || s.Conf.DefaultContentLanguageInSubdir() {
|
if len(s.conf.Languages) > 1 || s.Conf.DefaultContentLanguageInSubdir() {
|
||||||
base = s.Language().Lang
|
base = s.Language().Lang
|
||||||
}
|
}
|
||||||
return s.AbsURL(base, false)
|
p := s.AbsURL(base, false)
|
||||||
}
|
|
||||||
|
|
||||||
// SitemapAbsURL is a convenience method giving the absolute URL to the sitemap.
|
|
||||||
func (s *Site) SitemapAbsURL() string {
|
|
||||||
p := s.HomeAbsURL()
|
|
||||||
if !strings.HasSuffix(p, "/") {
|
if !strings.HasSuffix(p, "/") {
|
||||||
p += "/"
|
p += "/"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user