{{ end }}
diff --git a/themes/fzmin/layouts/_default/single.gopher.txt b/themes/fzmin/layouts/_default/single.gopher.txt
new file mode 100644
index 0000000..6f95d79
--- /dev/null
+++ b/themes/fzmin/layouts/_default/single.gopher.txt
@@ -0,0 +1,8 @@
+# {{ .Title }}
+
+{{ .Date.Format (.Site.Params.dateform | default "N/A") }}
+{{ if .Params.tags }}
+Posted in: {{ range .Params.tags }}{{ . }} {{ end }}
+{{ end }}
+
+{{ .RawContent }}
diff --git a/themes/fzmin/layouts/index.gopher.txt b/themes/fzmin/layouts/index.gopher.txt
new file mode 100644
index 0000000..6475ded
--- /dev/null
+++ b/themes/fzmin/layouts/index.gopher.txt
@@ -0,0 +1,13 @@
+!{{ .Title }}
+
+{{ .RawContent }}
+
+Site sections:
+{{ range .Site.Menus.main }}
+1{{ .Name }} {{ .Identifier }} {{ $.Site.Params.hostname }} 70
+{{ end }}
+
+Most recent articles
+{{ range first 3 .Pages.ByPublishDate.Reverse }}
+0{{ .Title }} {{ with .OutputFormats.Get "gopher" -}}{{ .RelPermalink }} {{ $.Site.Params.hostname }} 70 {{ end }}
+{{ end }}
diff --git a/themes/fzmin2/.gitignore b/themes/fzmin2/.gitignore
new file mode 100644
index 0000000..ce130a0
--- /dev/null
+++ b/themes/fzmin2/.gitignore
@@ -0,0 +1,5 @@
+.Rproj.user
+.Rhistory
+.RData
+.Ruserdata
+exampleSite/public
diff --git a/themes/fzmin2/LICENSE.md b/themes/fzmin2/LICENSE.md
new file mode 100644
index 0000000..259e3d6
--- /dev/null
+++ b/themes/fzmin2/LICENSE.md
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2017-2022 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/fzmin2/README.md b/themes/fzmin2/README.md
new file mode 100644
index 0000000..6a49c3d
--- /dev/null
+++ b/themes/fzmin2/README.md
@@ -0,0 +1,30 @@
+# HUGO XMIN
+
+**NOTE**: fzorb/zmin is the fork of xmin that runs on https://fzorb.xyz/ .
+
+## _Keep it simple, but not simpler_
+
+**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
+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.org)
diff --git a/themes/fzmin2/archetypes/default.md b/themes/fzmin2/archetypes/default.md
new file mode 100644
index 0000000..fb98e92
--- /dev/null
+++ b/themes/fzmin2/archetypes/default.md
@@ -0,0 +1,4 @@
+---
+title: ''
+date: ''
+---
diff --git a/themes/fzmin2/layouts/404.html b/themes/fzmin2/layouts/404.html
new file mode 100644
index 0000000..c2e4e40
--- /dev/null
+++ b/themes/fzmin2/layouts/404.html
@@ -0,0 +1,5 @@
+{{ partial "header.html" . }}
+
+404 NOT FOUND
+
+{{ partial "footer.html" . }}
diff --git a/themes/fzmin2/layouts/_default/list.gopher.txt b/themes/fzmin2/layouts/_default/list.gopher.txt
new file mode 100644
index 0000000..ebbce75
--- /dev/null
+++ b/themes/fzmin2/layouts/_default/list.gopher.txt
@@ -0,0 +1,7 @@
+!{{ .Title }}
+
+{{ .RawContent }}
+
+{{ range .Pages.ByPublishDate.Reverse }}
+0{{ .Title }} {{ with .OutputFormats.Get "gopher" -}}{{ .RelPermalink }} {{ $.Site.Params.hostname}} 70 {{ end }}
+{{ end }}
diff --git a/themes/fzmin2/layouts/_default/list.html b/themes/fzmin2/layouts/_default/list.html
new file mode 100644
index 0000000..3a3663f
--- /dev/null
+++ b/themes/fzmin2/layouts/_default/list.html
@@ -0,0 +1,21 @@
+{{ partial "header.html" . }}
+
+{{if not .IsHome }}
+
{{ .Title | markdownify }}
+{{ end }}
+
+{{ .Content }}
+
+{{ $pages := .Pages }}
+{{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
+{{ range $index, $page := (where $pages "Section" "!=" "") }}
+
+
+{{ partial "footer.html" . }}
diff --git a/themes/fzmin2/layouts/index.gopher.txt b/themes/fzmin2/layouts/index.gopher.txt
new file mode 100644
index 0000000..6475ded
--- /dev/null
+++ b/themes/fzmin2/layouts/index.gopher.txt
@@ -0,0 +1,13 @@
+!{{ .Title }}
+
+{{ .RawContent }}
+
+Site sections:
+{{ range .Site.Menus.main }}
+1{{ .Name }} {{ .Identifier }} {{ $.Site.Params.hostname }} 70
+{{ end }}
+
+Most recent articles
+{{ range first 3 .Pages.ByPublishDate.Reverse }}
+0{{ .Title }} {{ with .OutputFormats.Get "gopher" -}}{{ .RelPermalink }} {{ $.Site.Params.hostname }} 70 {{ end }}
+{{ end }}
diff --git a/themes/fzmin2/layouts/partials/foot_custom.html b/themes/fzmin2/layouts/partials/foot_custom.html
new file mode 100644
index 0000000..5ea231d
--- /dev/null
+++ b/themes/fzmin2/layouts/partials/foot_custom.html
@@ -0,0 +1,6 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/themes/fzmin2/layouts/partials/footer.html b/themes/fzmin2/layouts/partials/footer.html
new file mode 100644
index 0000000..f603e17
--- /dev/null
+++ b/themes/fzmin2/layouts/partials/footer.html
@@ -0,0 +1,9 @@
+
+