<c:forEach items="${newslist}" var="news" varStatus="vs">
<li>
<a href="${ctx}/news/newsQueryById.html?id=${news.id}">
<span>
${fn:substring(news.writetime,0,10)}
</span>
<c:if test="${fn:length(news.title)>'13'}">
${fn:substring(news.title,0,13)}...
</c:if>
<c:if test="${fn:length(news.title)<='13'}">
${news.title}
</c:if>
</a>
</li>
</c:forEach>
02-28
1427