Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaud Leprêtre <thibaud.lepretre@gmail.com>2017-04-12 10:24:27 +0300
committerThibaud Leprêtre <thibaud.lepretre@gmail.com>2017-04-12 10:24:27 +0300
commit2c33b3b7eee20bf3bd0e06ab17ab6bbb1792e7ce (patch)
tree39371992921e862a424ce5277f8da276256ee078 /exampleSite
parentf78c6d3395e46927ee15e6b8a725bbb108bb6e92 (diff)
Fix `customCSS` and `customJS` on config.toml
Correctly place `customCSS` and `customJS` on `config.toml` in order to avoid user error when copying that `config.toml` sample fixes #137
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/config.toml17
1 files changed, 9 insertions, 8 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index ec3c670..7ea948d 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -163,6 +163,15 @@ canonifyurls = true
# url: /#search
# icon: search
# class: st-search-show-outputs
+
+ # Custom CSS. Put here your custom CSS files. They are loaded after the theme CSS;
+ # they have to be referred from static root. Example
+ # customCSS = ["css/foo.css"]
+
+ # Custom JS. Put here your custom JS files. They are loaded after the theme JS;
+ # they have to be referred from static root. Example
+ # customJS = ["js/foo.js"]
+
[params.header.rightLink]
class = ""
icon = ""
@@ -175,11 +184,3 @@ canonifyurls = true
# Customize copyright value "© 2016 <CUSTOMIZATION>. All Rights Reserved"
# [params.footer]
# copyright = "<a href=\"https://github.com/kakawait\">kakawait</a>"
- #
- # Custom CSS. Put here your custom CSS files. They are loaded after the theme CSS;
- # they have to be referred from static root. Example
- # customCSS = ["css/foo.css"]
-
- # Custom JS. Put here your custom JS files. They are loaded after the theme JS;
- # they have to be referred from static root. Example
- # customJS = ["js/foo.js"]