Skip to content

Commit

Permalink
addition to intro
Browse files Browse the repository at this point in the history
  • Loading branch information
rphunt committed Jan 28, 2020
1 parent cb59d4b commit 24c27cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dist/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,16 @@ <h3 id="introeleventy">Intro to Eleventy</h3>
Eleventy will cycle through all the source files in a project that it's configured to, gathering up data from markdown, YAML front matter, JSON, or JavaScript, and making it available to the appropriate templates, all automatically. Eleventy then generates the resulting folders with their respective *.html files into a target output folder, to provide a flat, static website that requires no server-side processing.
</p>
</section>

<section class="chapter">
<h3 id="introguide">Intro to This Guide</h3>
<p>
This guide is meant to provide some step by step instructions for using Eleventy, and
provide additional reference information. It is not itself meant to be reference, though it might work as one to some extent. It does not build a project, but goes through steps to demonstrate various features. It is not meant to cover all options in all template languages, it is recommended that you <a href="https://www.11ty.io/docs/" target="_blank">refer to the official documentation</a> for more details.
</p>
<p>
It is called a <em>walkthrough</em> because each section presumes the previous sections have been completed.
</p>
<p>
As noted above, Eleventy can use various template languages, but it defaults to <em>Liquid</em>. This guide
will use that syntax until specifically noting a change, such as in the article where all the templates are switched to <em>Nunjucks</em>.
Expand Down
5 changes: 4 additions & 1 deletion src/intro.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,16 @@ <h3 id="introeleventy">Intro to Eleventy</h3>
Eleventy will cycle through all the source files in a project that it's configured to, gathering up data from markdown, YAML front matter, JSON, or JavaScript, and making it available to the appropriate templates, all automatically. Eleventy then generates the resulting folders with their respective *.html files into a target output folder, to provide a flat, static website that requires no server-side processing.
</p>
</section>

<section class="chapter">
<h3 id="introguide">Intro to This Guide</h3>
<p>
This guide is meant to provide some step by step instructions for using Eleventy, and
provide additional reference information. It is not itself meant to be reference, though it might work as one to some extent. It does not build a project, but goes through steps to demonstrate various features. It is not meant to cover all options in all template languages, it is recommended that you <a href="https://www.11ty.io/docs/" target="_blank">refer to the official documentation</a> for more details.
</p>
<p>
It is called a <em>walkthrough</em> because each section presumes the previous sections have been completed.
</p>
<p>
As noted above, Eleventy can use various template languages, but it defaults to <em>Liquid</em>. This guide
will use that syntax until specifically noting a change, such as in the article where all the templates are switched to <em>Nunjucks</em>.
Expand Down

0 comments on commit 24c27cf

Please sign in to comment.