mirror of
https://github.com/yihui/hugo-xmin.git
synced 2024-11-22 08:29:19 +02:00
run `find` only within the example site, and not in the site that users created with this theme, because this code chunk only makes sense to this theme repository
this is the actual fix for #19, and I guess I was unfair to Windows in d0209f7604
This commit is contained in:
parent
38d4939eec
commit
aeaa9637cb
|
@ -10,8 +10,9 @@ title: Home
|
||||||
|
|
||||||
**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.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'}
|
```{bash, comment='', echo=3, eval=Sys.which('bash') != ''}
|
||||||
cd ../..;
|
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
|
find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue