Add 'public/dist/html/anime.ejs'

This commit is contained in:
Muhammad Iqbal Rifai 2018-07-04 10:29:51 +02:00
parent b3865a9912
commit e8b35d929d
1 changed files with 1 additions and 0 deletions

1
public/dist/html/anime.ejs vendored Normal file
View File

@ -0,0 +1 @@
<% include ./layouts/header %> <body><h1>Anime View</h1><h4 class="card-title"> <%- serie.title %> </h4><br> <%- serie.synopsis.substring(0,48) %>...<br><br><h6>Type:</h6><ul> <%- link_to(serie.type) %> </ul><h6>Genre:</h6><ul> <% for(var i=0; i<serie.tags.length; i++) {%> <li> <%- link_to(serie.tags[i], '/'+serie.tags[i]) %> </li> <% } %> </ul><h6>Episode:</h6><ul> <% for(var i=0; i<serie.episodes.length; i++) {%> <li> <%- link_to(serie.episodes[i].slug, '/'+serie.episodes[i].slug) %> </li> <% } %> </ul></body>