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

github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Birke <gabriel.birke@gmail.com>2018-03-19 00:24:43 +0300
committerGabriel Birke <gabriel.birke@gmail.com>2018-03-19 00:29:38 +0300
commita31925cea06c06362682ad5e7323b15f229dcfab (patch)
treea0338d8956ad863fa47d1ddaff2a3164ccc20d01 /README.md
parentf976ec9e543870fcf808491891f54ed40a91b36e (diff)
Allow external JS and CSS to be included
Allow params.custom_css and params.custom_js to contain HTTP and HTTPS URLs.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a6087ea..f6959c8 100644
--- a/README.md
+++ b/README.md
@@ -187,18 +187,18 @@ paginate = 10
url = "/about/"
```
-* Override the theme by linking to custom CSS files:
+* Override the theme by linking to custom CSS files or URLs:
```toml
[params]
custom_css = ["css/my.css"]
```
-* Add new behaviours by linking to custom JS files:
+* Add new behaviours by linking to custom JS files or URLs:
```toml
[params]
- custom_js = ["js/my.js"]
+ custom_js = ["js/my.js", "https://cdnjs.cloudflare.com/ajax/libs/zooming/1.4.2/zooming.min.js"]
```
## Shortcodes