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.
30 lines
920 B
30 lines
920 B
<div class="infoCard">
|
|
<img src="<%=data.img%> " alt="<%= data.title %> Cover Image">
|
|
<div class="infoText">
|
|
<a href="<%=data.link%>" target="_blank"></a>
|
|
<% if(data.Status=='Ongoing'){%>
|
|
<h2 class="title">🟢<%=data.title %> </h2>
|
|
<% }else{ %>
|
|
<h2 class="title">🔴<%=data.title %> </h2>
|
|
<% } %>
|
|
</a>
|
|
<p class="description"> <%= data.description %> </p>
|
|
<div class="tags">
|
|
<% data.tags.forEach(tag=>{ %>
|
|
<div class="tag">
|
|
<%=tag %>
|
|
</div>
|
|
<% }) %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
|
|
<%- include('chapterShortcutButtonRow.ejs', {...data}) %>
|
|
<div class="list">
|
|
<% data.List.forEach(chapter=>{%>
|
|
<%- include('chapterButton.ejs', {chapter, scanlator:data.scanlator, title:data.title}) %>
|
|
<% }) %>
|
|
</div>
|
|
|