From 3f36d171bb6fc6eda9149c07898e65ceb5b8cd0e Mon Sep 17 00:00:00 2001 From: Nicholas Perry Date: Fri, 27 May 2022 10:34:47 -0400 Subject: [PATCH] fix typo about loading javascript in footer (#3350) --- docs/_docs/10-layouts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/10-layouts.md b/docs/_docs/10-layouts.md index 0a6ef71f0b01..28b0cef87c30 100644 --- a/docs/_docs/10-layouts.md +++ b/docs/_docs/10-layouts.md @@ -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 ``` ---