#macro paginate currentPage totalPage actionUrl urlParas=""> <#if (totalPage <= 0) || (currentPage > totalPage)><#return>#if> <#local startPage = currentPage - 4> <#if (startPage < 1)><#local startPage = 1>#if> <#local endPage = currentPage + 4> <#if (endPage > totalPage)><#local endPage = totalPage>#if>