I know it has to go inside <% %>, but I’m not sure if it’s very different from a typical forEach/for loop. The documentation on the EJS site is pretty limited, so I came here.
JavaScript
x
19
19
1
<% include ../../partials/header %>
2
3
<body>
4
<main>
5
<h1>List of all quotes</h1>
6
<ul>
7
<li> <!-- for loop goes here, inside flounder -->
8
<%
9
all quote stuff goes here
10
author
11
content
12
wrap it in a link to its quote page
13
</li>
14
</ul>
15
</main>
16
</body>
17
18
</html>
19
Advertisement
Answer
So here’s the example on embeddedjs:
JavaScript
1
6
1
<ul>
2
<% for(var i=0; i<supplies.length; i++) {%>
3
<li><%= supplies[i] %></li>
4
<% } %>
5
</ul>
6
And here’s what I did:
JavaScript
1
19
19
1
<% include ../../partials/header %> <
2
<body>
3
<main>
4
<h1>List of all quotes</h1>
5
<ul>
6
<% for(var i = 0; i < author.length; i++) {
7
<li><%= author[i] %></li>
8
<% } %>
9
10
<% for(var i = 0; i < content.length; i++) {
11
<li><%= content[i] %></li>
12
<% } %>
13
14
</ul>
15
</main>
16
</body>
17
18
</html>
19