<#include "header.htm"/> <#import "../macros/pagination.ftl" as pagination> <#import "../macros/presentation.ftl" as presentation/>
${I18n.getMessage("Search.searchResults")}: ${totalRecords} <#if (totalRecords == 1)>${I18n.getMessage("Search.recordFound")}<#else>${I18n.getMessage("Search.recordsFound")}
${I18n.getMessage("ForumListing.forumIndex")} <#assign paginationLinks> <@pagination.doPagination action/> ${paginationLinks}
<#list results as topic> <#assign forum = fr.getForum(topic.forumId)/>
   ${I18n.getMessage("Forums.Form.ForumName")}   ${I18n.getMessage("ForumIndex.topics")}   ${I18n.getMessage("ForumIndex.answers")}   ${I18n.getMessage("ForumIndex.author")}   ${I18n.getMessage("ForumIndex.views")}   ${I18n.getMessage("ForumIndex.lastMessage")} 
<@presentation.folderImage topic/> ${forum.name} <#if (topic.title?length == 0)>No Subject<#else>${topic.title?html} <#if topic.paginate>
<@pagination.littlePostPagination topic.id, postsPerPage, topic.totalReplies/>
${topic.totalReplies} ${topic.postedBy.username} ${topic.totalViews} <#if (topic.lastPostTime?length > 0)> ${topic.lastPostTime}
${topic.lastPostBy.username} <#assign startPage = ""/> <#if (topic.totalReplies + 1 > postsPerPage)> <#assign startPage = ((topic.totalReplies / postsPerPage)?int * postsPerPage) +"/"/> [Latest Reply]
 
${I18n.getMessage("ForumListing.forumIndex")} ${paginationLinks}
 
${I18n.getMessage("ForumIndex.goTo")}:   
<#include "folder_descriptions.htm"/>  
<#include "bottom.htm"/>