fix typo about loading javascript in footer (#3350)

This commit is contained in:
Nicholas Perry 2022-05-27 10:34:47 -04:00 committed by GitHub
parent 4ef57be787
commit 3f36d171bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -837,10 +837,10 @@ Add some Liquid tags for the new configuration to `_includes/footer/custom.html`
{% endif %}
```{% endraw %}
Next, add `page_js` to any page's YAML Front Matter to have your CSS loaded for that page.
Next, add `page_js` to any page's YAML Front Matter to have your JavaScript loaded for that page.
```yaml
page_js:
- /path/to/your/custom.css
- /path/to/your/custom.js
```
---