aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorArnab Kumar Shil <ruddra90@gmail.com>2018-12-30 12:49:24 +0600
committerTrack3 <34504964+Track3@users.noreply.github.com>2018-12-30 14:49:24 +0800
commit269713b589a6fc304304723f3febf2b0448a1705 (patch)
tree3653bd6fa005b47c132d89938caede90aea352ae /README.md
parent4fb41e8a9a8142f0b808183154f9929200f9668b (diff)
downloadhermit-269713b589a6fc304304723f3febf2b0448a1705.tar.gz
Add custom css support (#21)
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 118663f..dd8919a 100644
--- a/README.md
+++ b/README.md
@@ -73,6 +73,14 @@ The following icons are supported, please make sure the `name` filed is exactly
* Keep your regular pages in the `content` folder. To create a new page, run `hugo new page-title.md`
* Keep your blog posts in the `content/posts` folder. To create a new post, run `hugo new posts/post-title.md`
+### Add custom css
+For adding custom css to the theme, you need to assign an array of references in `config.toml` like following:
+```
+[params]
+ custom_css = ["css/foo.css", "css/bar.css"]
+```
+You can reference as many stylesheets as you want. Their paths need to be relative to the `static` folder.
+
## Acknowledgments
* [normalize.css](https://necolas.github.io/normalize.css/) - [MIT](https://github.com/necolas/normalize.css/blob/master/LICENSE.md)