From 6f1cbfb3be8ba41a1f9feaff26737d8eb4e9cef4 Mon Sep 17 00:00:00 2001 From: iBug Date: Tue, 23 Apr 2024 01:34:27 +0800 Subject: [PATCH] Fix bad Liquid include syntax --- _layouts/default.html | 2 +- docs/_docs/04-upgrading.md | 2 +- docs/_layouts/default.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index 4da4d125..39c6783a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,7 +2,7 @@ --- -{% include "copyright.html" %} +{% include copyright.html %} {% include head.html %} diff --git a/docs/_docs/04-upgrading.md b/docs/_docs/04-upgrading.md index f2c44df4..970600fa 100644 --- a/docs/_docs/04-upgrading.md +++ b/docs/_docs/04-upgrading.md @@ -11,7 +11,7 @@ If you're using the [Ruby Gem]({{ "/docs/quick-start-guide/#gem-based-method" | To check which version you are currently using, view the source of your built site and you should see something similar to: ```text -{% include "copyright.html" %} +{% include copyright.html %} ``` At the top of every `.html` file, `/assets/css/main.css`, and `/assets/js/main.min.js`. diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index bb012367..26cca63e 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -2,7 +2,7 @@ --- -{% include "copyright.html" %} +{% include copyright.html %} {% include head.html %}