From 60f34937b75a26c413e5e37cab2066b70239a9f6 Mon Sep 17 00:00:00 2001 From: "martin@ashbysoft.com" Date: Fri, 17 Sep 2021 22:01:14 +0000 Subject: move old site content into hugo --- themes/XMin/exampleSite/content/_index.Rmarkdown | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 themes/XMin/exampleSite/content/_index.Rmarkdown (limited to 'themes/XMin/exampleSite/content/_index.Rmarkdown') diff --git a/themes/XMin/exampleSite/content/_index.Rmarkdown b/themes/XMin/exampleSite/content/_index.Rmarkdown new file mode 100644 index 0000000..bae7bb6 --- /dev/null +++ b/themes/XMin/exampleSite/content/_index.Rmarkdown @@ -0,0 +1,25 @@ +--- +title: Home +--- + +[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.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') != '', message=FALSE} +cd ../..; +if [ ! -f 'theme.toml' ]; then exit 0; fi # only run find below within the theme example site +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. -- cgit v1.2.3-ZIG