e0f3ab6c35c893248f9ba96835d0e745913b2a79.svn-base
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/WEB-INF/views/modules/cms/front/include/taglib.jsp"%>
<!DOCTYPE html>
<html>
<head>
<title>${category.name}</title>
<meta name="decorator" content="cms_default_${site.theme}"/>
<meta name="description" content="${category.description}" />
<meta name="keywords" content="${category.keywords}" />
</head>
<body>
<div class="row">
<div class="span2">
<h4>栏目列表</h4>
<ol>
<cms:frontCategoryList categoryList="${categoryList}"/>
</ol>
<h4>推荐阅读</h4>
<ol>
<cms:frontArticleHitsTop category="${category}"/>
</ol>
</div>
<div class="span10">
<ul class="breadcrumb">
<cms:frontCurrentPosition category="${category}"/>
</ul>
</div>
<div class="span10">
<c:set var="index" value="1"/>
<c:forEach items="${categoryList}" var="tpl">
<c:if test="${tpl.inList eq '1' && tpl.module ne ''}">
<c:set var="index" value="${index+1}"/>
${index % 2 eq 0 ? '<div class="row">':''}
<div class="span5">
<h4><small><a href="${ctx}/list-${tpl.id}${urlSuffix}" class="pull-right">更多>></a></small>${tpl.name}</h4>
<c:if test="${tpl.module eq 'article'}">
<ul><c:forEach items="${fnc:getArticleList(site.id, tpl.id, 5, '')}" var="article">
<li><span class="pull-right"><fmt:formatDate value="${article.updateDate}" pattern="yyyy.MM.dd"/></span><a href="${ctx}/view-${article.category.id}-${article.id}${urlSuffix}" style="color:${article.color}">${fns:abbr(article.title,40)}</a></li>
</c:forEach></ul>
</c:if>
<c:if test="${tpl.module eq 'link'}">
<ul><c:forEach items="${fnc:getLinkList(site.id, tpl.id, 5, '')}" var="link">
<li><span class="pull-right"><fmt:formatDate value="${link.updateDate}" pattern="yyyy.MM.dd"/></span><a target="_blank" href="${link.href}" style="color:${link.color}">${fns:abbr(link.title,40)}</a></li>
</c:forEach></ul>
</c:if>
</div>
${index % 2 ne 0 ? '</div>':''}
</c:if>
</c:forEach>
</div>
</div>
</body>
</html>