<% template toolview2(String state) %> <% title = "Tool Listing" deck = "A list of content creation tools" desc = "Without tools, people are nothing more than animals. And " & "pretty weak ones at that. Here's a list of servlet-based " & "content creation tools you can use so you won't be a servlet " & "weakling." %> <% call header(title, deck, desc) %> <% if (state == null) { tools = getTools("live"); // semi-colon is permitted but not required } else { tools = getTools(state) } %> <% foreach (tool in tools) { %>

<% tool.name %> <% if (tool.createdAgeInDays < 45) { ' (New!) ' } else if (tool.modifiedAgeInDays < 45) { ' (Updated!) ' } %>

<% tool.homeURL %>
<% tool.comments %> <% } %> <% call footer() %>