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.
15 lines
935 B
15 lines
935 B
<div class="chapterNav">
|
|
<% if(data.chapterNum!=1){%>
|
|
<div class="chapterNavButton" hx-get="/chapter/<%=data.scanlator %>/<%= encodeURIComponent(data.prevChapterLink) %>/<%= data.title %>/<%= data.chapterNum-1 %>" hx-trigger="click" hx-target="#container">
|
|
<h3 class="prev">Prev</h3>
|
|
</div>
|
|
<% } %>
|
|
<h1 class="chapterNavChapterLabel"
|
|
hx-get="/manga/<%=data.scanlator %>/<%= encodeURIComponent(data.mangaLink) %>/<%= data.title %>" hx-trigger="click" hx-target="#container"
|
|
> <%= data.title %> - Chapter: <%= data.chapterNum %> </h1>
|
|
<% if(data.chapterNum<data.latestChap){%>
|
|
<div class="chapterNavButton" hx-get="/chapter/<%=data.scanlator %>/<%= encodeURIComponent(data.nextChapterLink) %>/<%= data.title %>/<%= data.chapterNum+1 %>" hx-trigger="click" hx-target="#container">
|
|
<h3 class="prev">Next</h3>
|
|
</div>
|
|
<% } %>
|
|
</div> |