%@page import="net.i2p.syndie.web.ArchiveViewerBean, net.i2p.syndie.*, net.i2p.data.Base64" %>
<%if (request.getRequestURI().indexOf("register.jsp") == -1) {%>
<% } %>
Local archive:
Posts: /
Blogs: /
Size: /
(new/total)
Latest blogs:
<%!int i = 0; %>
<%for (i = 0; i < archive.getNewestBlogCount(); i++) {
String keyHash = Base64.encode(archive.getNewestBlog(i).getData());
%>
<%=ArchiveViewerBean.getBlogName(keyHash)%>
<% } %>
Latest posts:
<%for (i = 0; i < archive.getNewestBlogEntryCount(); i++) {
String keyHash = Base64.encode(archive.getNewestBlogEntry(i).getKeyHash().getData());
long entryId = archive.getNewestBlogEntry(i).getEntryId();
%>
<%=ArchiveViewerBean.getEntryTitle(keyHash, entryId)%>
<% } %>