Skip to content

Commit

Permalink
Fixed broken example in README describing parameter passing w/ includes
Browse files Browse the repository at this point in the history
  • Loading branch information
drashevsky authored Feb 16, 2025
1 parent c292d30 commit bda7518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ There's no need for all that in a static website. If you do have a case for it,
```ejs
en.ejs: <%- include('_content.ejs', {lang: 'en'}) %>
fr.ejs: <%- include('_content.ejs', {lang: 'fr'}) %>
_content.ejs: <%= content[lang].body %> (use either content/en.md or content/fr.md)
_content.ejs: <%= content[locals.lang].body %> (use either content/en.md or content/fr.md)
```
#### How do I add pagination?
Expand Down

0 comments on commit bda7518

Please # to comment.