about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2020-11-14 21:17:02 +0100
committerAlan Pearce2020-11-14 21:52:50 +0100
commit5de7de4e64cb20183ebfe86e16578f4abd62a23e (patch)
treed3e24ee322d24c03a5e6563ace11c1c588881368
parentd996657be5efda94f4a934d5d78c407ba47bf76c (diff)
downloadwebsite-5de7de4e64cb20183ebfe86e16578f4abd62a23e.tar.lz
website-5de7de4e64cb20183ebfe86e16578f4abd62a23e.tar.zst
website-5de7de4e64cb20183ebfe86e16578f4abd62a23e.zip
Port theme to zola template
-rw-r--r--layouts/index.html36
-rw-r--r--layouts/partials/hook_head_end.html2
-rw-r--r--static/css/style.css (renamed from themes/xmin/static/css/style.css)0
-rw-r--r--templates/base.html25
l---------templates/categories/list.html1
l---------templates/categories/single.html1
-rw-r--r--templates/index.html36
-rw-r--r--templates/page.html28
-rw-r--r--templates/section.html18
-rw-r--r--templates/tags/list.html18
-rw-r--r--templates/tags/single.html25
-rw-r--r--themes/xmin/.gitignore5
-rw-r--r--themes/xmin/LICENSE.md20
-rw-r--r--themes/xmin/README.md28
-rw-r--r--themes/xmin/archetypes/default.md4
-rw-r--r--themes/xmin/exampleSite/config.toml36
-rw-r--r--themes/xmin/exampleSite/content/_index.Rmarkdown24
-rw-r--r--themes/xmin/exampleSite/content/_index.markdown38
-rw-r--r--themes/xmin/exampleSite/content/about.md101
-rw-r--r--themes/xmin/exampleSite/content/note/2017-06-13-a-quick-note.md15
-rw-r--r--themes/xmin/exampleSite/content/note/2017-06-14-another-note.md14
-rw-r--r--themes/xmin/exampleSite/content/post/2015-07-23-lorem-ipsum.md18
-rw-r--r--themes/xmin/exampleSite/content/post/2016-02-14-hello-markdown.md92
-rw-r--r--themes/xmin/exampleSite/layouts/partials/foot_custom.html4
-rw-r--r--themes/xmin/hugo-xmin.Rproj16
-rw-r--r--themes/xmin/images/screenshot.pngbin37151 -> 0 bytes
-rw-r--r--themes/xmin/images/tn.pngbin21823 -> 0 bytes
-rw-r--r--themes/xmin/layouts/404.html5
-rw-r--r--themes/xmin/layouts/_default/baseof.html31
-rw-r--r--themes/xmin/layouts/_default/list.html23
-rw-r--r--themes/xmin/layouts/_default/single.html19
-rw-r--r--themes/xmin/layouts/_default/terms.html13
-rw-r--r--themes/xmin/layouts/partials/foot_custom.html0
-rw-r--r--themes/xmin/layouts/partials/footer.html9
-rw-r--r--themes/xmin/layouts/partials/head_custom.html0
-rw-r--r--themes/xmin/layouts/partials/header.html19
-rw-r--r--themes/xmin/theme.toml12
37 files changed, 152 insertions, 584 deletions
diff --git a/layouts/index.html b/layouts/index.html
deleted file mode 100644
index 3fe80e9..0000000
--- a/layouts/index.html
+++ /dev/null
@@ -1,36 +0,0 @@
-{{ define "main" -}}
-<main class="h-card">
-  <h1 class="p-name">Alan Pearce</h1>
-  {{ .Content }}
-  <section>
-    <h2>Latest Posts</h2>
-    <ul>
-      {{- range first 3 .Site.RegularPages }}
-      <li class="h-entry">
-        <a class="u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a>
-        <time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
-      </li>
-      {{- end }}
-    </ul>
-  </section>
-  <section>
-    <h2>Elsewhere on the Internet</h2>
-    <ul>
-      {{- range .Site.Menus.contact }}
-      <li>
-        {{- if hasPrefix .URL "mailto:" }}
-        <a href="{{ .URL }}" class="u-email email" rel="me">{{ .Name }}</a>
-        {{- else }}
-        <a href="{{ .URL }}" class="u-url url" rel="me">{{ .Name }}</a>
-        {{- end }}
-      </li>
-      {{- end }}
-    </ul>
-  </section>
-  <footer>
-    {{- with .Site.Params.GPG }}
-    GPG Key: <a href="{{ .url }}" rel="u-key pgpkey">{{ .fingerprint }}</a>
-    {{- end }}
-  </footer>
-</main>
-{{- end }}
diff --git a/layouts/partials/hook_head_end.html b/layouts/partials/hook_head_end.html
deleted file mode 100644
index 0f89f7d..0000000
--- a/layouts/partials/hook_head_end.html
+++ /dev/null
@@ -1,2 +0,0 @@
-<link href="{{ if .IsPage }}{{ .Permalink | strings.TrimRight "/" }}{{ else }}{{ .Permalink }}{{ end }}" rel="canonical">
-<meta name="googlebot" content="noindex">
diff --git a/themes/xmin/static/css/style.css b/static/css/style.css
index e605297..e605297 100644
--- a/themes/xmin/static/css/style.css
+++ b/static/css/style.css
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..6b99609
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="{{ config.default_language }}">
+  <head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <title {%- if current_path == '/' %} class="p-name"{% endif %}>{% block title %}{{ section.title }} | {{ config.title }}{% endblock %}</title>
+    <link rel="stylesheet" href="/css/style.css" />
+    {%- if config.generate_feed %}
+    {%- block rss %}
+    <link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="RSS" href="{{ get_url(path=config.feed_filename) | safe }}">
+    {%- endblock %}
+    {%- endif %}
+  </head>
+  <body>
+    <nav>
+      <ul>
+        {%- for item in config.extra.menu.main %}
+          <li><a {%- if item.url == "/" %} class="author"{% endif %} href="{{ item.url | safe }}">{{ item.name }}</a></li>
+        {%- endfor %}
+      </ul>
+    </nav>
+    {% block main %}{% endblock %}
+    <footer>{{ config.extra.footer | safe }}</footer>
+  </body>
+</html>
diff --git a/templates/categories/list.html b/templates/categories/list.html
new file mode 120000
index 0000000..e0e4e08
--- /dev/null
+++ b/templates/categories/list.html
@@ -0,0 +1 @@
+../tags/list.html
\ No newline at end of file
diff --git a/templates/categories/single.html b/templates/categories/single.html
new file mode 120000
index 0000000..86f5e80
--- /dev/null
+++ b/templates/categories/single.html
@@ -0,0 +1 @@
+../tags/single.html
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..23ec4cd
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,36 @@
+{% extends "base.html" %}
+
+{% block main %}
+<main class="h-card">
+  <h1 class="p-name">{{ config.title }}</h1>
+  {{ section.content | safe }}
+  <section>
+    <h2>Latest Posts</h2>
+    <ul class="h-feed">
+      {%- for page in section.pages | slice(end=3) %}
+        <li class="h-entry">
+          <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%F") }}</time>
+          <a class="u-url p-name" href="{{ page.path | safe }}">{{ page.title }}</a>
+        </li>
+      {%- endfor %}
+    </ul>
+  </section>
+  <section>
+    <h2>Elsewhere on the Internet</h2>
+    <ul>
+      {%- for item in config.extra.menu.contact %}
+        <li>
+          {%- if item.url is starting_with("mailto:") %}
+            <a href="{{ item.url | safe }}" class="u-email email" rel="me">{{ item.name }}</a>
+          {%- else %}
+            <a href="{{ item.url | safe }}" class="u-url url" rel="me">{{ item.name }}</a>
+          {%- endif %}
+        </li>
+      {%- endfor %}
+    </ul>
+  </section>
+  <footer>
+    GPG Key: <a href="{{ config.extra.gpg_url | safe }}" rel="u-key pgpkey">{{ config.extra.gpg_fingerprint }}</a>
+  </footer>
+</main>
+{% endblock %}
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..f32a6fc
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block title %}
+{{- page.title -}}
+{% endblock %}
+
+{% block main %}
+<article class="h-entry">
+  <header>
+    <h1><span class="title p-name">{{ page.title }}</span></h1>
+    <time class="dt-published" datetime="{{ page.date | date(format='%+') }}">{{ page.date | date(format="%F") }}</time>
+    <p class="terms">
+      {%- if page.taxonomies %}
+      {%- for name, taxon in page.taxonomies %}
+      {{ name | capitalize }}:
+      {%- for item in taxon %}
+      <a class="p-category" href="{{ get_taxonomy_url(kind=name, name=item) }}">{{ item }}</a>
+      {%- endfor %}
+      {%- endfor %}
+      {%- endif %}
+    </p>
+  </header>
+
+  <main class="e-content">
+    {{ page.content | safe }}
+  </main>
+</article>
+{% endblock %}
diff --git a/templates/section.html b/templates/section.html
new file mode 100644
index 0000000..e61566f
--- /dev/null
+++ b/templates/section.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+
+{% block main %}
+<main>
+  <h1>{{ section.title }}</h1>
+  {{ section.content }}
+  <section>
+    <ul>
+      {% for page in section.pages %}
+        <li class="h-entry">
+          <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%F") }}</time>
+          <a class="u-url p-name" href="{{ page.path | safe }}">{{ page.title }}</a>
+        </li>
+      {% endfor %}
+    </ul>
+  </section>
+</main>
+{% endblock %}
diff --git a/templates/tags/list.html b/templates/tags/list.html
new file mode 100644
index 0000000..ee60c39
--- /dev/null
+++ b/templates/tags/list.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+
+{% block title %}{{ taxonomy.name | capitalize }}{% endblock %}
+
+{% block main %}
+<main>
+  <h1>{{ taxonomy.name | capitalize }}</h1>
+  <section>
+    <ul>
+      {%- for term in terms %}
+        <li>
+          <a href="{{ term.permalink }}">{{ term.name }}</a>
+        </li>
+      {%- endfor %}
+    </ul>
+  </section>
+</main>
+{% endblock %}
diff --git a/templates/tags/single.html b/templates/tags/single.html
new file mode 100644
index 0000000..25dde54
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% block rss %}
+  {% set rss_path = "tags/" ~ term.name ~ "/atom.xml" %}
+  <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path=rss_path, trailing_slash=false) | safe }}">
+
+{% endblock %}
+
+{% block title %}{{ taxonomy.name | capitalize }}: {{ term.name }} | {{ config.title }}{% endblock %}
+
+{% block main %}
+<main>
+  <h1>{{ taxonomy.name | capitalize }}: {{ term.name }}</h1>
+  <section>
+    <ul class="h-feed">
+      {%- for page in term.pages %}
+        <li class="h-entry">
+          <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format="%F") }}</time>
+          <a class="u-url p-name" href="{{ page.permalink | safe }}">{{ page.title }}</a>
+        </li>
+      {%- endfor %}
+    </ul>
+  </section>
+</main>
+{% endblock %}
diff --git a/themes/xmin/.gitignore b/themes/xmin/.gitignore
deleted file mode 100644
index ce130a0..0000000
--- a/themes/xmin/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-.Rproj.user
-.Rhistory
-.RData
-.Ruserdata
-exampleSite/public
diff --git a/themes/xmin/LICENSE.md b/themes/xmin/LICENSE.md
deleted file mode 100644
index fa77e18..0000000
--- a/themes/xmin/LICENSE.md
+++ /dev/null
@@ -1,20 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2017 Yihui Xie
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/themes/xmin/README.md b/themes/xmin/README.md
deleted file mode 100644
index 3cd9a40..0000000
--- a/themes/xmin/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# HUGO XMIN
-
-## _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).
-
-
-```bash
-find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
-```
-
-```
-       5 ./layouts/404.html
-      12 ./layouts/_default/single.html
-      20 ./layouts/_default/list.html
-      13 ./layouts/_default/terms.html
-       0 ./layouts/partials/foot_custom.html
-       0 ./layouts/partials/head_custom.html
-       9 ./layouts/partials/footer.html
-      20 ./layouts/partials/header.html
-      51 ./static/css/style.css
-       7 ./static/css/fonts.css
-     137 total
-```
-
-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)
diff --git a/themes/xmin/archetypes/default.md b/themes/xmin/archetypes/default.md
deleted file mode 100644
index fb98e92..0000000
--- a/themes/xmin/archetypes/default.md
+++ /dev/null
@@ -1,4 +0,0 @@
----
-title: ''
-date: ''
----
diff --git a/themes/xmin/exampleSite/config.toml b/themes/xmin/exampleSite/config.toml
deleted file mode 100644
index 7147426..0000000
--- a/themes/xmin/exampleSite/config.toml
+++ /dev/null
@@ -1,36 +0,0 @@
-baseurl = "/"
-languageCode = "en-us"
-title = "A minimal Hugo website"
-theme = "hugo-xmin"
-googleAnalytics = ""
-disqusShortname = ""
-ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
-footnotereturnlinkcontents = "↩"
-
-[permalinks]
-    post = "/post/:year/:month/:day/:slug/"
-    note = "/note/:year/:month/:day/:slug/"
-
-[[menu.main]]
-    name = "Home"
-    url = "/"
-    weight = 1
-[[menu.main]]
-    name = "About"
-    url = "/about/"
-    weight = 2
-[[menu.main]]
-    name = "Categories"
-    url = "/categories/"
-    weight = 3
-[[menu.main]]
-    name = "Tags"
-    url = "/tags/"
-    weight = 4
-[[menu.main]]
-    name = "Subscribe"
-    url = "/index.xml"
-
-[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)"
diff --git a/themes/xmin/exampleSite/content/_index.Rmarkdown b/themes/xmin/exampleSite/content/_index.Rmarkdown
deleted file mode 100644
index 9819e5d..0000000
--- a/themes/xmin/exampleSite/content/_index.Rmarkdown
+++ /dev/null
@@ -1,24 +0,0 @@
----
-title: Home
----
-
-[<img src="https://simpleicons.org/icons/github.svg" style="max-width:15%;min-width:40px;float:right;" alt="Github repo" />](https://github.com/yihui/hugo-xmin)
-
-# HUGO XMIN
-
-## _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).
-
-```{bash, comment='', echo=2, eval=Sys.which('bash') != '' && .Platform$OS.type != 'windows'}
-cd ../..;
-find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
-```
-
-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.
-
-Although it is a minimal theme, it is actually fully functional. It supports pages (including the home page), blog posts, a navigation menu, categories, tags, and RSS. With [a little bit customization](https://github.com/yihui/hugo-xmin/blob/master/exampleSite/layouts/partials/foot_custom.html), it can easily support LaTeX math expressions, e.g.,
-
-`$${\sqrt {n}}\left(\left({\frac {1}{n}}\sum _{i=1}^{n}X_{i}\right)-\mu \right)\ {\xrightarrow {d}}\ N\left(0,\sigma ^{2}\right)$$`
-
-All pages not under the root directory of the website are listed below. You can also visit the list page of a single section, e.g., [posts](/post/), or [notes](/note/). See the [About](/about/) page for the usage of this theme.
diff --git a/themes/xmin/exampleSite/content/_index.markdown b/themes/xmin/exampleSite/content/_index.markdown
deleted file mode 100644
index ac2271c..0000000
--- a/themes/xmin/exampleSite/content/_index.markdown
+++ /dev/null
@@ -1,38 +0,0 @@
----
-title: Home
----
-
-[<img src="https://simpleicons.org/icons/github.svg" style="max-width:15%;min-width:40px;float:right;" alt="Github repo" />](https://github.com/yihui/hugo-xmin)
-
-# HUGO XMIN
-
-## _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).
-
-
-```bash
-find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
-```
-
-```
-       5 ./layouts/404.html
-      12 ./layouts/_default/single.html
-      20 ./layouts/_default/list.html
-      13 ./layouts/_default/terms.html
-       0 ./layouts/partials/foot_custom.html
-       0 ./layouts/partials/head_custom.html
-       9 ./layouts/partials/footer.html
-      20 ./layouts/partials/header.html
-      51 ./static/css/style.css
-       7 ./static/css/fonts.css
-     137 total
-```
-
-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.
-
-Although it is a minimal theme, it is actually fully functional. It supports pages (including the home page), blog posts, a navigation menu, categories, tags, and RSS. With [a little bit customization](https://github.com/yihui/hugo-xmin/blob/master/exampleSite/layouts/partials/foot_custom.html), it can easily support LaTeX math expressions, e.g.,
-
-`$${\sqrt {n}}\left(\left({\frac {1}{n}}\sum _{i=1}^{n}X_{i}\right)-\mu \right)\ {\xrightarrow {d}}\ N\left(0,\sigma ^{2}\right)$$`
-
-All pages not under the root directory of the website are listed below. You can also visit the list page of a single section, e.g., [posts](/post/), or [notes](/note/). See the [About](/about/) page for the usage of this theme.
diff --git a/themes/xmin/exampleSite/content/about.md b/themes/xmin/exampleSite/content/about.md
deleted file mode 100644
index dd83942..0000000
--- a/themes/xmin/exampleSite/content/about.md
+++ /dev/null
@@ -1,101 +0,0 @@
----
-title: About Hugo XMin
-author: Yihui Xie
----
-
-**XMin** is the first Hugo theme I have designed. The original reason that I wrote it was I needed a minimal example of Hugo themes when I was writing the  [**blogdown**](https://github.com/rstudio/blogdown) book. Basically I wanted a simple theme that supports a navigation menu, a home page, other single pages, lists of pages, blog posts, categories, tags, and RSS. That is all. Nothing fancy. In terms of CSS and JavaScript, I really want to keep them minimal. In fact, this theme does not contain any JavaScript code at all, although on this example website I did introduce some JavaScript code (still relatively simple anyway). The theme does not contain any images, either, and is pretty much a plain-text theme.
-
-The theme name "XMin" can be interpreted as "**X**ie's **Min**imal theme" (Xie is my last name) or "e**X**tremely **Min**imal theme".
-
-# 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.
-
-```
-[permalinks]
-    post = "/post/:year/:month/:day/:slug/"
-    note = "/note/:year/:month/:day/:slug/"
-```
-
-You can define the menu through `menu.main`, e.g.,
-
-```
-[[menu.main]]
-    name = "Home"
-    url = "/"
-    weight = 1
-[[menu.main]]
-    name = "About"
-    url = "/about/"
-    weight = 2
-[[menu.main]]
-    name = "Categories"
-    url = "/categories/"
-    weight = 3
-[[menu.main]]
-    name = "Tags"
-    url = "/tags/"
-    weight = 4
-[[menu.main]]
-    name = "Subscribe"
-    url = "/index.xml"
-```
-
-Alternatively, you can add `menu: main` to the YAML metadata of any of your pages, so that these pages will appear in the menu.
-
-The page footer can be defined in `.Params.footer`, and the text is treated as Markdown, e.g.,
-
-```
-[params]
-    footer = "&copy; [Yihui Xie](https://yihui.name) 2017"
-```
-
-# Custom layouts
-
-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 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>
-```
-
-You can certainly enable highlight.js for syntax highlighting by yourself through `head_custom.html` and `foot_custom.html` if you want.
-
-If you do not like the default fonts (e.g., `Palatino`), you may provide your own `static/css/fonts.css` under the root directory of your website to override the `fonts.css` in the theme.
-
-# Other features
-
-I could have added more features to this theme, but I decided not to, since I have no intention to make this theme feature-rich. However, I will teach you how. I have prepared several examples via pull requests at https://github.com/yihui/hugo-xmin/pulls, so that you can see the implementations of these features when you check out the diffs in the pull requests. For example, you can:
-
-- [Enable Google Analytics](https://github.com/yihui/hugo-xmin/pull/3)
-
-- [Enable Disqus comments](https://github.com/yihui/hugo-xmin/pull/4)
-
-- [Enable highlight.js for syntax highlighting of code blocks](https://github.com/yihui/hugo-xmin/pull/5)
-
-- [Display categories and tags on a page](https://github.com/yihui/hugo-xmin/pull/2)
-
-- [Add a table of contents](https://github.com/yihui/hugo-xmin/pull/7)
-
-- [Add a link in the footer of each page to "Edit this page" on Github](https://github.com/yihui/hugo-xmin/pull/6)
-
-To fully understand these examples, you have to read [the section on Hugo templates](https://bookdown.org/yihui/blogdown/templates.html) in the **blogdown** book.
-
-# Design philosophy
-
-Lastly, a few words about my design philosophy for this theme: I have been relying on existing frameworks like Bootstrap for years since I'm not really a designer, and I was always scared by the complexity of CSS.
-
-When I started writing this theme, I asked myself, "_What if I just write from scratch?_" No Bootstrap. No Normalize.css. I don't care about IE (life could be so much easier without IE) or inconsistencies among browsers (for personal websites). As long as the theme looks okay in Chrome, Firefox, and Safari, I'm done. Thanks to the simplicity of Markdown, you cannot really produce very complicated HTML, and I think styling the HTML output from Markdown is much simpler than general HTML documents. For example, I do not need to care much about form elements like textareas or buttons.
-
-After I finished this theme, I started to wonder why I'd need `normalize.css` at all (it sounds like a religious belief). The default appearance of modern browsers actually looks pretty good in my eyes, after I tweak the typeface a little bit.
-
-Compared to inconsistencies across browsers, I care much more about these properties of HTML elements:
-
-- Tables should always be centered, and striped tables are easier to read especially when they are wide. Tables should not have vertical borders.
-- An image should be centered if it is the only child element of a paragraph.
-- The `max-width` of images, videos, and iframes should be `100%`.
-
-I hope you can enjoy this theme. The source code is [on Github](https://github.com/yihui/hugo-xmin). Happy hacking!
diff --git a/themes/xmin/exampleSite/content/note/2017-06-13-a-quick-note.md b/themes/xmin/exampleSite/content/note/2017-06-13-a-quick-note.md
deleted file mode 100644
index 9d855a4..0000000
--- a/themes/xmin/exampleSite/content/note/2017-06-13-a-quick-note.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: A Quick Note on Two Beautiful Websites
-author: Yihui Xie
-date: '2017-06-13'
-categories:
-  - Example
-slug: a-quick-note
----
-
-To me, the two most impressive websites based on **blogdown** are:
-
-1. [Rob J Hyndman](https://robjhyndman.com)'s personal website.
-1. [Live Free or Dichotomize](http://livefreeordichotomize.com) by Lucy and Nick _et al_.
-
-I'm sure there will be more.
diff --git a/themes/xmin/exampleSite/content/note/2017-06-14-another-note.md b/themes/xmin/exampleSite/content/note/2017-06-14-another-note.md
deleted file mode 100644
index 16f41de..0000000
--- a/themes/xmin/exampleSite/content/note/2017-06-14-another-note.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: Another Note on A blogdown Tutorial
-author: Yihui Xie
-date: '2017-06-14'
-categories:
-  - Example
-tags:
-  - Tutorial
-slug: another-note
----
-
-I just discovered [an awesome tutorial](https://apreshill.rbind.io/post/up-and-running-with-blogdown/) on **blogdown** written by Alison. I have to admit this is _the_ best **blogdown** tutorial I have seen so far.
-
-![](https://apreshill.rbind.io/img/posts/2017-06-12-up-and-running-with-blogdown/blogdown-signpost-4.png)
diff --git a/themes/xmin/exampleSite/content/post/2015-07-23-lorem-ipsum.md b/themes/xmin/exampleSite/content/post/2015-07-23-lorem-ipsum.md
deleted file mode 100644
index ef58622..0000000
--- a/themes/xmin/exampleSite/content/post/2015-07-23-lorem-ipsum.md
+++ /dev/null
@@ -1,18 +0,0 @@
----
-title: Lorem Ipsum
-date: '2015-07-23'
-categories:
-  - Example
-tags:
-  - Markdown
----
-
-**Lorem ipsum** dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore _magna aliqua_. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-Quisque mattis volutpat lorem vitae feugiat. Praesent porta est quis porta imperdiet. Aenean porta, mi non cursus volutpat, mi est mollis libero, id suscipit orci urna a augue. In fringilla euismod lacus, vitae tristique massa ultricies vitae. Mauris accumsan ligula tristique, viverra nulla sed, porta sapien. Vestibulum facilisis nec nisl blandit convallis. Maecenas venenatis porta malesuada. Ut ac erat tortor. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla sodales quam sit amet tincidunt egestas. In et turpis at orci vestibulum ullamcorper. Aliquam sed ante libero. Sed hendrerit arcu lacus.
-
-> Sed luctus volutpat sem in dapibus. Ut pellentesque vitae magna ac mattis. Sed vestibulum, nulla at condimentum semper, magna quam posuere dui, quis sagittis enim nisi eget ex. Vivamus tempor erat a sem dapibus porta. Fusce varius dapibus tempus. Nam bibendum dignissim fringilla. Phasellus eu justo facilisis, ullamcorper urna in, feugiat mauris. Quisque dignissim purus vitae ullamcorper scelerisque. Sed at magna at nisi consequat euismod. Curabitur justo ex, efficitur in fermentum luctus, tincidunt nec lectus. Aliquam a neque metus. Etiam nulla nunc, tristique vitae accumsan ullamcorper, placerat eget nunc. Cras porta eleifend dolor maximus molestie. Etiam vitae pellentesque turpis, quis accumsan ligula. Mauris auctor, nisi nec ullamcorper pulvinar, libero magna sagittis enim, sollicitudin dignissim urna justo et tortor.
-
-Morbi non sem euismod, suscipit purus id, gravida velit. Quisque mollis luctus ligula non suscipit. Curabitur massa arcu, aliquam ac dolor a, pellentesque dignissim dui. Donec at vestibulum magna. Quisque fermentum, tortor id sodales egestas, ligula ligula interdum ipsum, et volutpat elit massa vitae nibh. Morbi eleifend libero quis pretium viverra. Etiam congue, velit ac vestibulum finibus, velit nibh fringilla purus, eu semper dui est eu nunc. Etiam feugiat scelerisque diam vitae sodales. Etiam luctus in urna eu lobortis. Nam vestibulum eros et nibh elementum ullamcorper. Nam tristique porttitor orci, nec pretium est vestibulum at. Quisque posuere semper orci, vel semper justo commodo sed. Nullam accumsan risus rhoncus fringilla porta. Morbi interdum condimentum pharetra. Donec eu elit quam. Vivamus eleifend posuere mi, vel accumsan urna sollicitudin ut.
-
-Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla nec nunc felis. Sed bibendum vel leo id semper. Maecenas vitae iaculis ante. Nam ut tempor est, eu molestie augue. Quisque tincidunt sagittis odio sed tristique. Aenean et felis quis mi viverra consequat.
diff --git a/themes/xmin/exampleSite/content/post/2016-02-14-hello-markdown.md b/themes/xmin/exampleSite/content/post/2016-02-14-hello-markdown.md
deleted file mode 100644
index e06e31a..0000000
--- a/themes/xmin/exampleSite/content/post/2016-02-14-hello-markdown.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: A Plain Markdown Post
-author: Yihui Xie
-date: '2016-02-14'
-categories:
-  - Example
-  - Hugo
-tags:
-  - blogdown
-  - Markdown
-  - MathJax
-  - Pandoc
-  - RStudio
----
-
-This sample post is mainly for [**blogdown**](https://github.com/rstudio/blogdown) users. If you do not use **blogdown**, you can skip the first section.
-
-# 1. Markdown or R Markdown
-
-This is a post written in plain Markdown (`*.md`) instead of R Markdown (`*.Rmd`). The major differences are:
-
-1. You cannot run any R code in a plain Markdown document, whereas in an R Markdown document, you can embed R code chunks (```` ```{r} ````);
-2. A plain Markdown post is rendered through [Blackfriday](https://gohugo.io/overview/configuration/), and an R Markdown document is compiled by [**rmarkdown**](http://rmarkdown.rstudio.com) and [Pandoc](http://pandoc.org).
-
-There are many differences in syntax between Blackfriday's Markdown and Pandoc's Markdown. For example, you can write a task list with Blackfriday but not with Pandoc:
-
-- [x] Write an R package.
-- [ ] Write a book.
-- [ ] ...
-- [ ] Profit!
-
-Similarly, Blackfriday does not support LaTeX math and Pandoc does. I have added the MathJax support to this theme ([hugo-xmin](https://github.com/yihui/hugo-xmin)) but there is a caveat for plain Markdown posts: you have to include math expressions in a pair of backticks (inline: `` `$ $` ``; display style: `` `$$ $$` ``), e.g., `$S_n = \sum_{i=1}^n X_i$`.^[This is because we have to protect the math expressions from being interpreted as Markdown.] For R Markdown posts, you do not need the backticks, because Pandoc can identify and process math expressions.
-
-When creating a new post, you have to decide whether the post format is Markdown or R Markdown, and this can be done via the `rmd` argument of the function `blogdown::new_post()`, e.g.
-
-```r
-blogdown::new_post("Post Title", rmd = FALSE)
-```
-
-Actually I recommend you to use the RStudio addin "New Post" instead:
-
-![RStudio addin New Post](https://bookdown.org/yihui/blogdown/images/new-post.png)
-
-# 2. Sample Text
-
-## Second-level header
-
-### Third-level header
-
-#### Fourth-level header
-
-A paragraph (with a footnote):
-
-**Lorem ipsum** dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore _magna aliqua_. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.^[I'm sure you are bored by the text here.]
-
-A blockquote (a gray bar at the left and lightgray background):
-
-> Quisque mattis volutpat lorem vitae feugiat. Praesent porta est quis porta imperdiet. Aenean porta, mi non cursus volutpat, mi est mollis libero, id suscipit orci urna a augue. In fringilla euismod lacus, vitae tristique massa ultricies vitae. Mauris accumsan ligula tristique, viverra nulla sed, porta sapien. Vestibulum facilisis nec nisl blandit convallis. Maecenas venenatis porta malesuada. Ut ac erat tortor. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla sodales quam sit amet tincidunt egestas. In et turpis at orci vestibulum ullamcorper. Aliquam sed ante libero. Sed hendrerit arcu lacus.
-
-Some code (with a drop-shadow effect):
-
-```js
-(function() {
-  var quotes = document.getElementsByTagName('blockquote'), i, quote;
-  for (i = 0; i < quotes.length; i++) {
-    quote = quotes[i];
-    var n = quote.children.length;
-    if (n === 0) continue;
-    var el = quote.children[n - 1];
-    if (!el || el.nodeName !== 'P') continue;
-    // right-align a quote footer if it starts with ---
-    if (/^—/.test(el.textContent)) el.style.textAlign = 'right';
-  }
-})();
-```
-
-A table (centered by default):
-
-| Sepal.Length| Sepal.Width| Petal.Length| Petal.Width|Species |
-|------------:|-----------:|------------:|-----------:|:-------|
-|          5.1|         3.5|          1.4|         0.2|setosa  |
-|          4.9|         3.0|          1.4|         0.2|setosa  |
-|          4.7|         3.2|          1.3|         0.2|setosa  |
-|          4.6|         3.1|          1.5|         0.2|setosa  |
-|          5.0|         3.6|          1.4|         0.2|setosa  |
-|          5.4|         3.9|          1.7|         0.4|setosa  |
-
-An image (automatically centered when it is appropriate):
-
-![Happy Elmo](https://slides.yihui.name/gif/happy-elmo.gif)
-
-Looks good?
diff --git a/themes/xmin/exampleSite/layouts/partials/foot_custom.html b/themes/xmin/exampleSite/layouts/partials/foot_custom.html
deleted file mode 100644
index 270a44d..0000000
--- a/themes/xmin/exampleSite/layouts/partials/foot_custom.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<script src="//yihui.name/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>
diff --git a/themes/xmin/hugo-xmin.Rproj b/themes/xmin/hugo-xmin.Rproj
deleted file mode 100644
index d64e28b..0000000
--- a/themes/xmin/hugo-xmin.Rproj
+++ /dev/null
@@ -1,16 +0,0 @@
-Version: 1.0
-
-RestoreWorkspace: Default
-SaveWorkspace: Default
-AlwaysSaveHistory: Default
-
-EnableCodeIndexing: Yes
-UseSpacesForTab: Yes
-NumSpacesForTab: 2
-Encoding: UTF-8
-
-RnwWeave: knitr
-LaTeX: pdfLaTeX
-
-AutoAppendNewline: Yes
-StripTrailingWhitespace: Yes
diff --git a/themes/xmin/images/screenshot.png b/themes/xmin/images/screenshot.png
deleted file mode 100644
index 3df0a14..0000000
--- a/themes/xmin/images/screenshot.png
+++ /dev/null
Binary files differdiff --git a/themes/xmin/images/tn.png b/themes/xmin/images/tn.png
deleted file mode 100644
index 389a20c..0000000
--- a/themes/xmin/images/tn.png
+++ /dev/null
Binary files differdiff --git a/themes/xmin/layouts/404.html b/themes/xmin/layouts/404.html
deleted file mode 100644
index 2f77920..0000000
--- a/themes/xmin/layouts/404.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{ define "main" }}
-
-404 Not Found
-
-{{- end }}
diff --git a/themes/xmin/layouts/_default/baseof.html b/themes/xmin/layouts/_default/baseof.html
deleted file mode 100644
index f934ea8..0000000
--- a/themes/xmin/layouts/_default/baseof.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ .Site.LanguageCode }}" {{- if .Page.IsNode }} class="h-feed"{{ end }}>
-  <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <title {{- if .Page.IsNode }} class="p-name"{{ end }}>{{ .Title }} | {{ .Site.Title }}</title>
-    <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
-    {{- range .AlternativeOutputFormats }}
-    {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
-    {{- end }}
-  </head>
-
-  <body>
-    <nav>
-      <ul>
-        {{- range .Site.Menus.main }}
-        <li><a {{- if eq .URL "/" }} class="author"{{ end }} href="{{ .URL | relURL }}">{{ .Name }}</a></li>
-        {{- end }}
-      </ul>
-    </nav>
-
-    {{ block "main" . }}
-    {{ end }}
-
-    <footer>
-      {{- with .Site.Params.footer }}
-      {{ . | markdownify }}
-      {{- end }}
-    </footer>
-  </body>
-</html>
diff --git a/themes/xmin/layouts/_default/list.html b/themes/xmin/layouts/_default/list.html
deleted file mode 100644
index 6780bba..0000000
--- a/themes/xmin/layouts/_default/list.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{ define "main" }}
-
-{{ if not .IsHome }}
-<h1>{{ .Title | markdownify }}</h1>
-{{ else }}
-<h1>{{ .Site.Title | markdownify }}</h1>
-{{ end }}
-
-
-{{ .Content }}
-
-<ul>
-  {{ $pages := .Pages }}
-  {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
-  {{ range (where $pages "Section" "!=" "") }}
-  <li class="h-entry">
-    <span class="date dt-published">{{ .Date.Format "2006-01-02" }}</span>
-    <a class="u-url p-name" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
-  </li>
-  {{ end }}
-</ul>
-
-{{- end }}
diff --git a/themes/xmin/layouts/_default/single.html b/themes/xmin/layouts/_default/single.html
deleted file mode 100644
index b69ed7c..0000000
--- a/themes/xmin/layouts/_default/single.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{{ define "main" }}
-<article class="h-entry">
-  <header>
-    <h1><span class="title p-name">{{ .Title | markdownify }}</span></h1>
-    {{ if (gt .Params.date 0) }}<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
-    <p class="terms">
-      {{- range $i := (slice "categories" "tags") }}
-      {{- with ($.Param $i) }}
-      {{ $i | title }}: {{ range $k := . }}<a class="p-category" href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
-      {{- end }}
-      {{- end }}
-    </p>
-  </header>
-
-  <div class="e-content">
-  {{ .Content }}
-  </div>
-</article>
-{{- end }}
diff --git a/themes/xmin/layouts/_default/terms.html b/themes/xmin/layouts/_default/terms.html
deleted file mode 100644
index 15de7a9..0000000
--- a/themes/xmin/layouts/_default/terms.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{{ define "main" }}
-
-<h1>{{ .Title }}</h1>
-
-<ul class="terms">
-  {{ range .Data.Terms }}
-  <li>
-    <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ .Count }})
-  </li>
-  {{ end }}
-</ul>
-
-{{- end }}
diff --git a/themes/xmin/layouts/partials/foot_custom.html b/themes/xmin/layouts/partials/foot_custom.html
deleted file mode 100644
index e69de29..0000000
--- a/themes/xmin/layouts/partials/foot_custom.html
+++ /dev/null
diff --git a/themes/xmin/layouts/partials/footer.html b/themes/xmin/layouts/partials/footer.html
deleted file mode 100644
index 3f46ea5..0000000
--- a/themes/xmin/layouts/partials/footer.html
+++ /dev/null
@@ -1,9 +0,0 @@
-  <footer>
-  {{ partial "foot_custom.html" . }}
-  {{ with .Site.Params.footer }}
-  <hr/>
-  {{ . | markdownify }}
-  {{ end }}
-  </footer>
-  </body>
-</html>
diff --git a/themes/xmin/layouts/partials/head_custom.html b/themes/xmin/layouts/partials/head_custom.html
deleted file mode 100644
index e69de29..0000000
--- a/themes/xmin/layouts/partials/head_custom.html
+++ /dev/null
diff --git a/themes/xmin/layouts/partials/header.html b/themes/xmin/layouts/partials/header.html
deleted file mode 100644
index b3dbf64..0000000
--- a/themes/xmin/layouts/partials/header.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ .Site.LanguageCode }}">
-  <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <title>{{ .Title }} | {{ .Site.Title }}</title>
-    <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
-    {{ partial "head_custom.html" . }}
-  </head>
-
-  <body>
-    <nav>
-    <ul class="menu">
-      {{ range .Site.Menus.main }}
-      <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
-      {{ end }}
-    </ul>
-    <hr/>
-    </nav>
diff --git a/themes/xmin/theme.toml b/themes/xmin/theme.toml
deleted file mode 100644
index 8733afd..0000000
--- a/themes/xmin/theme.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-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"
-tags = ["minimal", "blog", "personal", "clean", "simple", "starter", "minimalist"]
-features = ["blog"]
-min_version = "0.18"
-
-[author]
-  name = "Yihui Xie"
-  homepage = "https://yihui.name"