Skip to content

Commit

Permalink
Merge pull request #97 from r-finder/documentation-fix
Browse files Browse the repository at this point in the history
chore: fixed examples to EJS and Eta in the README
  • Loading branch information
r-finder committed Jul 5, 2024
2 parents 9154c9c + 3a9075e commit 50b14e3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3936,10 +3936,9 @@ For example, there is the template _src/views/page/index.eta_
<h1><%= headline %></h1>
<ul class="people">
<% for (let i = 0; i < people.length; i++) {%>
<li><%= people[i] %>></li>
<li><%= people[i] %></li>
<% } %>
</ul>
<%~ include('/src/views/partials/footer') %>
</body>
</html>
```
Expand Down Expand Up @@ -4008,10 +4007,9 @@ For example, there is the template _src/views/page/index.ejs_
<h1><%= headline %></h1>
<ul class="people">
<% for (let i = 0; i < people.length; i++) {%>
<li><%= people[i] %>></li>
<li><%= people[i] %></li>
<% } %>
</ul>
<%- include('/src/views/partials/footer.html'); %>
</body>
</html>
```
Expand Down

0 comments on commit 50b14e3

Please sign in to comment.