2021-05-09 03:12:41 +02:00
|
|
|
|
<div class='pool-navigator-container'>
|
2021-05-09 08:15:19 +02:00
|
|
|
|
<div class='pool-info-wrapper <%= ctx.isActivePool ? "active" : "" %>'>
|
|
|
|
|
<span class='prev'>
|
|
|
|
|
<% if (ctx.canViewPosts && ctx.prevPost) { %>
|
|
|
|
|
<a class='<%- ctx.linkClass %>' href='<%= ctx.getPostUrl(ctx.prevPost.id, ctx.parameters) %>'>
|
|
|
|
|
<% } %>
|
|
|
|
|
‹ prev
|
|
|
|
|
<% if (ctx.canViewPosts && ctx.prevPost) { %>
|
|
|
|
|
</a>
|
|
|
|
|
<% } %>
|
|
|
|
|
</span>
|
|
|
|
|
<span class='pool-name'>
|
|
|
|
|
<% if (ctx.canViewPools) { %>
|
|
|
|
|
<a class='<%- ctx.linkClass %>' href='<%= ctx.formatClientLink("pool", ctx.pool.id) %>'>
|
|
|
|
|
<% } %>
|
2021-05-09 08:27:09 +02:00
|
|
|
|
Pool: <%- ctx.pool.names[0] %>
|
2021-05-09 08:15:19 +02:00
|
|
|
|
<% if (ctx.canViewPools) { %>
|
|
|
|
|
</a>
|
|
|
|
|
<% } %>
|
|
|
|
|
</span>
|
|
|
|
|
<span class='next'>
|
|
|
|
|
<% if (ctx.canViewPosts && ctx.nextPost) { %>
|
|
|
|
|
<a class='<%- ctx.linkClass %>' href='<%= ctx.getPostUrl(ctx.nextPost.id, ctx.parameters) %>'>
|
|
|
|
|
<% } %>
|
|
|
|
|
next ›
|
|
|
|
|
<% if (ctx.canViewPosts && ctx.nextPost) { %>
|
|
|
|
|
</a>
|
|
|
|
|
<% } %>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
2021-05-09 03:12:41 +02:00
|
|
|
|
</div>
|