solo-skins/Community/article-list.ftl

125 lines
5.1 KiB
Plaintext

<#--
Solo - A small and beautiful blogging system written in Java.
Copyright (c) 2010-present, b3log.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<#list articles as article>
<div class="marginBottom40">
<div class="article-header">
<div class="article-date">
${article.articleUpdateDate?string("yyyy-MM-dd")}
</div>
<div class="arrow-right"></div>
<div class="clear"></div>
<ul>
<li>
<span class="left">
by&nbsp;
</span>
<a rel="nofollow" class="left" title="${article.authorName}"
href="${servePath}/authors/${article.authorId}">
${article.authorName}
</a>
<span class="clear"></span>
</li>
<li>
<a rel="nofollow" href="${servePath}${article.articlePermalink}" title="${viewLabel}">
${viewLabel} (${article.articleViewCount})
</a>
</li>
<li>
<a rel="nofollow" title="${commentLabel}" href="${servePath}${article.articlePermalink}#comments">
${commentLabel} (${article.articleCommentCount})
</a>
</li>
</ul>
</div>
<div class="article-main">
<h2 class="title">
<a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}">
${article.articleTitle}
</a>
<#if article.articlePutTop>
<sup>
${topArticleLabel}
</sup>
</#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h2>
<div class="vditor-reset">
${article.articleAbstract}
</div>
<div class="read-more">
<a href="${servePath}${article.articlePermalink}">
<span class="left">${readmore2Label}</span>
<span class="read-more-icon"></span>
<span class="clear"></span>
</a>
<div class="clear"></div>
</div>
</div>
<div class="article-footer">
<h3>${tagsLabel}</h3>
<ul>
<#list article.articleTags?split(",") as articleTag>
<li>
<a rel="tag" href="${servePath}/tags/${articleTag?url('UTF-8')}">
${articleTag}
</a>
</li>
</#list>
<li>
<a href="${servePath}${article.articlePermalink}">
<#if article.articleCreateDate?datetime != article.articleUpdateDate?datetime>
${updateDateLabel}
<#else>
${createDateLabel}
</#if>:${article.articleUpdateDate?string("yyyy-MM-dd HH:mm")}
</a>
</li>
</ul>
</div>
<div class="clear"></div>
</div>
</#list>
<#if 0 != paginationPageCount>
<div class="pagination">
<#if 1 != paginationPageNums?first>
<a href="${servePath}${path}">${firstPageLabel}</a>
<a id="previousPage" href="${servePath}${path}?p=${paginationPreviousPageNum}">${previousPageLabel}</a>
</#if>
<#list paginationPageNums as paginationPageNum>
<#if paginationPageNum == paginationCurrentPageNum>
<a href="${servePath}${path}?p=${paginationPageNum}" class="selected">${paginationPageNum}</a>
<#else>
<a href="${servePath}${path}?p=${paginationPageNum}">${paginationPageNum}</a>
</#if>
</#list>
<#if paginationPageNums?last != paginationPageCount>
<a id="nextPage" href="${servePath}${path}?p=${paginationNextPageNum}">${nextPagePabel}</a>
<a href="${servePath}${path}?p=${paginationPageCount}">${lastPageLabel}</a>
</#if>
&nbsp;&nbsp;${sumLabel} ${paginationPageCount} ${pageLabel}
</div>
</#if>