Replace replace-this-with-your-hugo-site.com with example.org
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 8 Jul 2016 19:38:28 +0000 (21:38 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 8 Jul 2016 19:38:28 +0000 (21:38 +0200)
Fixes #2264

docs/content/overview/quickstart.md
docs/content/tutorials/creating-a-new-theme.md

index f7f21a0adcce63b2a34e0877cf45213122b010f6..336fd9248a5a1c2c48a4ef40ad2709490efee05c 100644 (file)
@@ -283,7 +283,7 @@ $ hugo server --theme=hugo_theme_robust --buildDrafts
 The website uses the dummy values specified in the `config.toml`. Let's update the configuration.
 
 ```toml
-baseurl = "http://replace-this-with-your-hugo-site.com/"
+baseurl = "http://example.org/"
 languageCode = "en-us"
 title = "Shekhar Gulati Book Reviews"
 
index 960774ea86355af79241211bcece3866824e2f5a..cf38dffc3d543efc6e11ad166c6ab65cc7a0a8a2 100644 (file)
@@ -304,7 +304,7 @@ Edit the file to add the named theme.
 ```bash
 $ vi config.toml
 theme = "zafta"
-baseurl = "http://replace-this-with-your-hugo-site.com/"
+baseurl = "http://example.org/"
 languageCode = "en-us"
 title = "My New Hugo Site"
 :wq
@@ -719,9 +719,9 @@ $ cat public/index.html
 <html>
 <body>
   
-    <h1><a href="http://replace-this-with-your-hugo-site.com/article/second/">second</a></h1>
+    <h1><a href="http://example.org/article/second/">second</a></h1>
   
-    <h1><a href="http://replace-this-with-your-hugo-site.com/article/first/">first</a></h1>
+    <h1><a href="http://example.org/article/first/">first</a></h1>
   
 </body>
 </html>
@@ -823,7 +823,7 @@ Nulla facilisi.</p>
 In quam ante, vulputate at massa et, rutrum
 gravida dui. Phasellus tristique libero at ex.</p>
 
-  <p><a href="http://replace-this-with-your-hugo-site.com/">Home</a></p>
+  <p><a href="http://example.org/">Home</a></p>
 </body>
 </html>
 
@@ -845,7 +845,7 @@ varius sagittis turpis.</p>
 pulvinar. Ut mattis gravida venenatis. Vivamus
 lobortis risus id nisi rutrum, at iaculis.</p>
 
-  <p><a href="http://replace-this-with-your-hugo-site.com/">Home</a></p>
+  <p><a href="http://example.org/">Home</a></p>
 </body>
 </html>
 $ 
@@ -985,7 +985,7 @@ $ cat public/about/index.html
 ipsum quia dolor sit amet consectetur
 adipisci velit.</p>
 
-  <p><a href="http://replace-this-with-your-hugo-site.com/">Home</a></p>
+  <p><a href="http://example.org/">Home</a></p>
 </body>
 </html>
 $ 
@@ -1001,11 +1001,11 @@ $ cat public/index.html
 <html>
 <body>
   
-    <h1><a href="http://replace-this-with-your-hugo-site.com/about/">about</a></h1>
+    <h1><a href="http://example.org/about/">about</a></h1>
   
-    <h1><a href="http://replace-this-with-your-hugo-site.com/article/second/">second</a></h1>
+    <h1><a href="http://example.org/article/second/">second</a></h1>
   
-    <h1><a href="http://replace-this-with-your-hugo-site.com/article/first/">first</a></h1>
+    <h1><a href="http://example.org/article/first/">first</a></h1>
   
 </body>
 </html>
@@ -1060,10 +1060,10 @@ $ cat public/index.html
 <html>
 <body>
   <h1>Articles</h1>
-      <h2><a href="http://replace-this-with-your-hugo-site.com/article/second/">second</a></h2>
-      <h2><a href="http://replace-this-with-your-hugo-site.com/article/first/">first</a></h2>
+      <h2><a href="http://example.org/article/second/">second</a></h2>
+      <h2><a href="http://example.org/article/first/">first</a></h2>
   <h1>Pages</h1>
-      <h2><a href="http://replace-this-with-your-hugo-site.com/about/">about</a></h2>
+      <h2><a href="http://example.org/about/">about</a></h2>
 </body>
 </html>
 ```
@@ -1251,7 +1251,7 @@ $ cat public/about/index.html
 ipsum quia dolor sit amet consectetur
 adipisci velit.</p>
 
-  <p><a href="http://replace-this-with-your-hugo-site.com/">Home</a></p>
+  <p><a href="http://example.org/">Home</a></p>
 </body>
 </html>
 
@@ -1273,7 +1273,7 @@ Nulla facilisi.</p>
 In quam ante, vulputate at massa et, rutrum
 gravida dui. Phasellus tristique libero at ex.</p>
 
-  <p><a href="http://replace-this-with-your-hugo-site.com/">Home</a></p>
+  <p><a href="http://example.org/">Home</a></p>
 </body>
 </html>