diff --git a/eleventy-walkthrough/partials-and-include.html b/eleventy-walkthrough/partials-and-include.html index 703f7a6..3cd2bea 100644 --- a/eleventy-walkthrough/partials-and-include.html +++ b/eleventy-walkthrough/partials-and-include.html @@ -141,7 +141,7 @@
- The tag {% include %} is how a partial is added to a page. By default, Eleventy looks for partials in the _includes folder. For example, to include header HTML that is in the file _includes/_head.html, the tag would be {% include _head.html %}. Note that it's common practice to start the filename of a partial with "_". + The tag {% include %} is how a partial is added to a page. By default, Eleventy looks for partials in the _includes folder. For example, to include header HTML that is in the file _includes/_head.html, the tag would be {% include `_head.html` %}. Note that it's common practice to start the filename of a partial with "_".
Create a file _includes/_head.html @@ -178,7 +178,7 @@