Guest User

Untitled

a guest
Apr 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <html><body>
  2.  
  3. <ul>
  4. <li>name: <%=h items[cursor][0] %></li>
  5. <li>price: <%=h items[cursor][1] %></li>
  6. </ul>
  7.  
  8. <%- if 0 < cursor -%>
  9. <a href="<%= uris[cursor - 1] %>">Prev: <%=h items[cursor - 1][0] %></a>
  10. <%- end -%>
  11. |
  12. <%- if cursor + 1 < uris.length-%>
  13. <a href="<%= uris[cursor + 1] %>">Next: <%=h items[cursor + 1][0] %></a>
  14. <%- end -%>
  15.  
  16. </body></html>
Add Comment
Please, Sign In to add comment