Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected partials include directive to quote filenames, to work with… #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eleventy-walkthrough/partials-and-include.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h2>Partials and Include</h2>
<section class="chapter">
<h3 id="usinginclude">Using Include</h3>
<p>
The tag <span class="tag">{% include %}</span> is how a partial is added to a page. By default, Eleventy looks for partials in the <span class="path">_includes</span> folder. For example, to include header HTML that is in the file <span class="path">_includes/_head.html</span>, the tag would be <span class="tag">{% include _head.html %}</span>. Note that it's common practice to start the filename of a partial with &quot;_&quot;.
The tag <span class="tag">{% include %}</span> is how a partial is added to a page. By default, Eleventy looks for partials in the <span class="path">_includes</span> folder. For example, to include header HTML that is in the file <span class="path">_includes/_head.html</span>, the tag would be <span class="tag">{% include `_head.html` %}</span>. Note that it's common practice to start the filename of a partial with &quot;_&quot;.
</p>
<p>
Create a file <span class="path">_includes/_head.html</span>
Expand Down Expand Up @@ -178,7 +178,7 @@ <h3 id="usinginclude">Using Include</h3>
- finch
- sparrow
---
{% include _head.html %}
{% include `_head.html` %}
&lt;h1&gt;{{ title }}&lt;/h1&gt;

&lt;ul&gt;
Expand All @@ -187,7 +187,7 @@ <h3 id="usinginclude">Using Include</h3>
{% endfor %}
&lt;/ul&gt;

{% include _foot.html %}
{% include `_foot.html` %}
</pre class="codeexample">

<p>
Expand Down