yihui.name -> yihui.org
authorYihui Xie <xie@yihui.name>
Mon, 5 Oct 2020 15:29:00 +0000 (10:29 -0500)
committerYihui Xie <xie@yihui.name>
Mon, 5 Oct 2020 15:29:00 +0000 (10:29 -0500)
README.md
exampleSite/config.toml
exampleSite/content/_index.Rmarkdown
exampleSite/content/_index.markdown
exampleSite/content/about.md
exampleSite/content/post/2016-02-14-hello-markdown.md
exampleSite/layouts/partials/foot_custom.html
theme.toml

index 3cd9a4018c4fa16c954d2014c3fae43cd8b70e96..2cd5279af5a29f432a47022e2412dc6e6d5cf0b0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 ## _Keep it simple, but not simpler_
 
-**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
+**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.org) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
 
 
 ```bash
@@ -25,4 +25,4 @@ find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xarg
 
 I can certainly further reduce the code, for example, by eliminating the CSS, but I believe a tiny bit of CSS can greatly improve readability. You cannot really find many CSS frameworks that only contain 50 lines of code.
 
-[![Screenshot](https://github.com/yihui/hugo-xmin/raw/master/images/screenshot.png)](https://xmin.yihui.name)
+[![Screenshot](https://github.com/yihui/hugo-xmin/raw/master/images/screenshot.png)](https://xmin.yihui.org)
index b46683799906e56d167787ce054bdf1565e6bdc8..c70d7b7079feb376aec8e4b5a388273936dcb92b 100644 (file)
@@ -33,7 +33,7 @@ footnotereturnlinkcontents = "↩"
 
 [params]
     description = "A website built through Hugo and blogdown."
-    footer = "&copy; [Yihui Xie](https://yihui.name) 2017 -- 2019 | [Github](https://github.com/yihui) | [Twitter](https://twitter.com/xieyihui)"
+    footer = "&copy; [Yihui Xie](https://yihui.org) 2017 -- 2019 | [Github](https://github.com/yihui) | [Twitter](https://twitter.com/xieyihui)"
 
 [markup]
   [markup.goldmark]
index 276abac5c54c8fb7326e2fde33188ecb9ae7d75a..a7df6f62fa208639a2d8ce439571164d7faaa6b3 100644 (file)
@@ -8,7 +8,7 @@ title: Home
 
 ## _Keep it simple, but not simpler_
 
-**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
+**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.org) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
 
 ```{bash, comment='', echo=3, eval=Sys.which('bash') != ''}
 cd ../..;
index ac2271cf43f0f9e0b46b098dc103fc47177e90b2..5a92003f9fd91412dcef5dae0efdc0de00a13a69 100644 (file)
@@ -8,7 +8,7 @@ title: Home
 
 ## _Keep it simple, but not simpler_
 
-**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.name) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
+**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.org) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
 
 
 ```bash
index dd83942295ee7f2462bcf072e6fcf467c4f24684..210bb35586c9ac993aac4cd7c3f30e35f34b7dc6 100644 (file)
@@ -9,7 +9,7 @@ The theme name "XMin" can be interpreted as "**X**ie's **Min**imal theme" (Xie i
 
 # config.toml
 
-For this example site, I defined permalinks for two sections, `post` and `note`, so that the links to pages under these directories will contain the date info, e.g., `https://xmin.yihui.name/post/2016/02/14/a-plain-markdown-post/`. This is optional, and it is up to your personal taste of URLs.
+For this example site, I defined permalinks for two sections, `post` and `note`, so that the links to pages under these directories will contain the date info, e.g., `https://xmin.yihui.org/post/2016/02/14/a-plain-markdown-post/`. This is optional, and it is up to your personal taste of URLs.
 
 ```
 [permalinks]
@@ -47,7 +47,7 @@ The page footer can be defined in `.Params.footer`, and the text is treated as M
 
 ```
 [params]
-    footer = "&copy; [Yihui Xie](https://yihui.name) 2017"
+    footer = "&copy; [Yihui Xie](https://yihui.org) 2017"
 ```
 
 # Custom layouts
@@ -55,11 +55,11 @@ The page footer can be defined in `.Params.footer`, and the text is treated as M
 There are two layout files under `layouts/partials/` that you may want to override: `head_custom.html` and `foot_custom.html`. This is how you inject arbitrary HTML code to the head and foot areas. For example, this site has a file `layouts/partials/foot_custom.html` to support LaTeX math via MathJax and center images automatically:
 
 ```html
-<script src="//yihui.name/js/math-code.js"></script>
+<script src="//yihui.org/js/math-code.js"></script>
 <script async src="//cdn.bootcss.com/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
 </script>
 
-<script async src="//yihui.name/js/center-img.js"></script>
+<script async src="//yihui.org/js/center-img.js"></script>
 ```
 
 You can certainly enable highlight.js for syntax highlighting by yourself through `head_custom.html` and `foot_custom.html` if you want.
index e06e31a05c7d7632aa7ef7a401f5087ed313fecf..21ee28da47c0222445ecb09c4f4e08275509e6f1 100644 (file)
@@ -87,6 +87,6 @@ A table (centered by default):
 
 An image (automatically centered when it is appropriate):
 
-![Happy Elmo](https://slides.yihui.name/gif/happy-elmo.gif)
+![Happy Elmo](https://slides.yihui.org/gif/happy-elmo.gif)
 
 Looks good?
index 270a44dc733eb0492f06dd643d3e103bc39596cd..3389d46df2157742727d778a6ab7a057032e62fa 100644 (file)
@@ -1,4 +1,4 @@
-<script src="//yihui.name/js/math-code.js"></script>
+<script src="//yihui.org/js/math-code.js"></script>
 <script async src="//mathjax.rstudio.com/latest/MathJax.js?config=TeX-MML-AM_CHTML"></script>
 
-<script async src="//yihui.name/js/center-img.js"></script>
+<script async src="//yihui.org/js/center-img.js"></script>
index 8733afd9b022c50dc2996221460c8901269f1483..4233eb637cba30b0f2e534c71f95da65f49e7915 100644 (file)
@@ -2,11 +2,11 @@ name = "XMin"
 license = "MIT"
 licenselink = "https://github.com/yihui/hugo-xmin/blob/master/LICENSE.md"
 description = "eXtremely Minimal Hugo theme: about 150 lines of code in total, including HTML and CSS"
-homepage = "https://xmin.yihui.name"
+homepage = "https://xmin.yihui.org"
 tags = ["minimal", "blog", "personal", "clean", "simple", "starter", "minimalist"]
 features = ["blog"]
 min_version = "0.18"
 
 [author]
   name = "Yihui Xie"
-  homepage = "https://yihui.name"
+  homepage = "https://yihui.org"