## 四、详情模板
### 1.栏目对象
**说明**
*和列表模板一样,catalog为当前栏目,topCatalog为父级栏目,左边子栏目subCatalogList,参考列表模板*
### 2.文章对象article
**说明**
*该对象封装了文章的属性,属性参考首页模板Article*
**演示**
~~~
<#if article?? && article!=''>
<#assign a=article/>
<div class="ttle">${(a.title)!}</div>
<div class="time">编辑:${(a.userName)!} 发布日期:${(a.showtime)?string("yyyy-MM-dd hh:mm:ss")} 来源:${(website.name)!} 浏览次数:${(a.clicks)!0}次</div>
<div class="txt">
<#if catalog.type==6> <!--判断是否为附件栏目-->
<#include "/WEB-INF/ftl/www/common/file_catatlog.ftl"/><!--附件浏览模板-->
<#else>
<#noescape>${(a.context)!}</#noescape>
</#if>
</div>
<#if (article.files)?? && (article.files) != ''> <!--判断是否有附件-->
<span>附件下载:</span></br>
<#list (article.show_filesName) as f> <!--遍历所有附件-->
<a style="margin-left: 19px;font-size: 12px;" href = '${(article.show_filesUrl[f_index])!}'>${(f)!}</a></br>
</#list>
</#if>
</#if>
~~~