freemarker

Posted huiminxu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freemarker相关的知识,希望对你有一定的参考价值。

 <a <#if topic.isCollect?? && topic.isCollect=="y">
class="topic-favo favo-cur" <#else> class="topic-favo" </#if>
id="${topic.id}" href="javascript:void(0);"><i class="iconfont">&#xe672;</i></a>


<ul>
<#list  topThreeTopicList as  topic>
<#if topic_index == 0>
<li class="topic-list-item topic-list-item1" data-url="#">
<a href="#"><img src="${topic.topicImage}"></a>
<#else>
<li class="topic-list-item " data-url="#">
<a href="${basepath}/topic/detail/${topic.id}"><img src="${topic.topicImage}"></a>
</#if>

<div class="floatl">
<p class="name text-ellipsis">${topic.topicName}</p>
<p class="date"><i class="iconfont">&#xe606;</i>${topic.topicPeriod}</p>
</div>
<div class="flaotr">
<p><i class="iconfont">&#xe610;</i><span>${topic.pageView}</span></p>
<p>${topic.isCollect!""} <a <#if topic.isCollect?? && topic.isCollect=="y">
class="topic-favo favo-cur" <#else> class="topic-favo" </#if>
id="${topic.id}" href="javascript:void(0);"><i class="iconfont">&#xe672;</i></a><span>${topic.collect}</span></p>

</div>
</li>
</#list>
</ul>






<p class="mb2">
<span class="fright">${template.browseNum}浏览/${template.downloadNum}下载</span>
<#if template.nowPrice!="0.00"&&template.score=0 >
<span class="mb_price">
<i class="iconfont">&#xe617;</i>${template.nowPrice}
</span>
<#elseif template.nowPrice=="0.00"&&template.score=0>
<span class="mb_score">
<i class="iconfont">&#xe616;</i>免费
</span>
<#else>
<span class="mb_score">
<i class="iconfont">&#xe618;</i>${template.score}
</span>
</#if>
</p>

以上是关于freemarker的主要内容,如果未能解决你的问题,请参考以下文章

如何从源代码构建 freemarker?

如何在 Maven 中使用模板代码生成器(例如 freemarker)?

FreeMarker自定义指令--代码实现

SpringBoot获取Freemarker模板引擎,生成HTML代码

FreeMarker里如何调用java代码?

java工程中使用freemarker例子