You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
22 lines
393 B
<html>
|
|
<head>
|
|
<title>Adventure Time</title>
|
|
</head>
|
|
<body>
|
|
<h1 style="font-family: monospace; display: inline-block">ADVENTURE TIME CHARACTERS</h1>
|
|
|
|
<a href="/characters/new" style="display: inline-block">Add new character</a>
|
|
|
|
</br>
|
|
|
|
<% for (var i=0; i < data.length; i++) { %>
|
|
|
|
<a href="characters/<%=data[i].id%>">
|
|
<img src="<%= data[i].img%>"/>
|
|
</a>
|
|
|
|
<% } %>
|
|
</body>
|
|
</html>
|
|
|