diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go index 7c595d8a1..ca65acb7c 100644 --- a/commands/import_jekyll.go +++ b/commands/import_jekyll.go @@ -221,7 +221,7 @@ func loadJekyllConfig(jekyllRoot string) map[string]interface{} { func createConfigFromJekyll(inpath string, kind string, jekyllConfig map[string]interface{}) (err error) { title := "My New Hugo Site" - baseurl := "http://replace-this-with-your-hugo-site.com/" + baseurl := "http://example.org/" for key, value := range jekyllConfig { lowerKey := strings.ToLower(key) diff --git a/commands/new.go b/commands/new.go index 8e30797a0..a75a6f758 100644 --- a/commands/new.go +++ b/commands/new.go @@ -332,7 +332,7 @@ func newContentPathSection(path string) (string, string) { func createConfig(inpath string, kind string) (err error) { in := map[string]interface{}{ - "baseurl": "http://replace-this-with-your-hugo-site.com/", + "baseurl": "http://example.org/", "title": "My New Hugo Site", "languageCode": "en-us", } diff --git a/docs/content/tutorials/creating-a-new-theme.md b/docs/content/tutorials/creating-a-new-theme.md index a86abc3d0..2f5f93fe3 100644 --- a/docs/content/tutorials/creating-a-new-theme.md +++ b/docs/content/tutorials/creating-a-new-theme.md @@ -489,7 +489,7 @@ So, let's edit your configuration file to add the theme name: ```toml $ vi config.toml theme = "zafta" -baseurl = "http://replace-this-with-your-hugo-site.com/" +baseurl = "http://example.org/" title = "My New Hugo Site" languageCode = "en-us" :wq @@ -1047,8 +1047,8 @@ $ cat public/index.html
-