From: spf13 Date: Mon, 5 Aug 2013 23:06:59 +0000 (+0200) Subject: fixing badlink on homepage X-Git-Tag: v0.9~181 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=783f0d61;p=brevno-suite%2Fhugo fixing badlink on homepage --- diff --git a/docs/config.yaml b/docs/config.yaml index 77155260..ff2577f0 100644 --- a/docs/config.yaml +++ b/docs/config.yaml @@ -1,4 +1,4 @@ -Indexes: +indexes: tag: 'tags' -BaseUrl: 'http://localhost' +baseurl: 'http://hugo.spf13.com' ... diff --git a/hugolib/site.go b/hugolib/site.go index 8b7d86c9..b2eb70cf 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -200,10 +200,12 @@ func (s *Site) ProcessShortcodes() { func (s *Site) AbsUrlify() { for i, _ := range s.Pages { content := string(s.Pages[i].Content) - content = strings.Replace(content, " src=\"/", " src=\""+s.c.BaseUrl+"/", -1) - content = strings.Replace(content, " src='/", " src='"+s.c.BaseUrl+"/", -1) - content = strings.Replace(content, " href='/", " href='"+s.c.BaseUrl+"/", -1) - content = strings.Replace(content, " href=\"/", " href=\""+s.c.BaseUrl+"/", -1) + content = strings.Replace(content, " src=\"/", " src=\""+s.c.BaseUrl, -1) + content = strings.Replace(content, " src='/", " src='"+s.c.BaseUrl, -1) + content = strings.Replace(content, " href='/", " href='"+s.c.BaseUrl, -1) + content = strings.Replace(content, " href=\"/", " href=\""+s.c.BaseUrl, -1) + baseWithoutTrailingSlash := strings.TrimRight(s.c.BaseUrl, "/") + content = strings.Replace(content, baseWithoutTrailingSlash+"//", baseWithoutTrailingSlash+"/", -1) s.Pages[i].Content = template.HTML(content) } }