out.write(" | ");
out.write("<a href=\"" + UrlRewriter.doRewrite(today.getPermalink()) + "\">" + todayText + "</a>");
out.write(" | ");
// only display the next month date if it's not in the future
if (next.getDate().after(now.getTime()) || next.before(firstMonth)) {
out.write(monthFormatter.format(next.getDate()));
} else {
out.write("<a href=\"" + UrlRewriter.doRewrite(next.getPermalink()) + "\">" + monthFormatter.format(next.getDate()) + "</a>");
}
out.write("</td>");