movie_info.ejs
685 Bytes
<table class="table table-condensed">
<thead>
<tr>
<th>제목</th>
<th>사진</th>
<th>영어 제목</th>
<th>개봉연도</th>
<th>감독</th>
<th>배우</th>
<th>평점</th>
<th>링크</th>
</tr>
</thead>
<tbody>
<% for(var i=0; i < item.length; i++) { %>
<tr>
<td> <p><%= item[i]["title"] %></p></td>
<td><img src="<%= item[i].image %>"></td>
<td> <p><%= item[i]["subtitle"]%></p></td>
<td> <p><%= item[i]["pubDate"]%></p></td>
<td> <p><%= item[i]["director"]%></p></td>
<td> <p><%= item[i]["actor"]%></p></td>
<td> <p><%= item[i]["userRating"]%></p></td>
<td> <p><%= item[i]["link"]%></p></td>
</tr>
<% } %>
</tbody>
</table>