about summary refs log tree commit diff stats
path: root/themes/xmin/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/README.md')
-rw-r--r--themes/xmin/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/themes/xmin/README.md b/themes/xmin/README.md new file mode 100644 index 0000000..3cd9a40 --- /dev/null +++ b/themes/xmin/README.md
@@ -0,0 +1,28 @@
1# HUGO XMIN
2
3## _Keep it simple, but not simpler_
4
5**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).
6
7
8```bash
9find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
10```
11
12```
13 5 ./layouts/404.html
14 12 ./layouts/_default/single.html
15 20 ./layouts/_default/list.html
16 13 ./layouts/_default/terms.html
17 0 ./layouts/partials/foot_custom.html
18 0 ./layouts/partials/head_custom.html
19 9 ./layouts/partials/footer.html
20 20 ./layouts/partials/header.html
21 51 ./static/css/style.css
22 7 ./static/css/fonts.css
23 137 total
24```
25
26I 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.
27
28[![Screenshot](https://github.com/yihui/hugo-xmin/raw/master/images/screenshot.png)](https://xmin.yihui.name)