add new skin
This commit is contained in:
101
finding/dynamic.ftl
Normal file
101
finding/dynamic.ftl
Normal file
@@ -0,0 +1,101 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${dynamicLabel}"/>
|
||||
<meta name="description" content="${metaDescription},${dynamicLabel}"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body class="nav-closed">
|
||||
<div class="nav">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="site-wrapper">
|
||||
<#include "header.ftl">
|
||||
<main id="content">
|
||||
<#if 0 != recentComments?size>
|
||||
<ul class="comments fn-wrap">
|
||||
<#list recentComments as comment>
|
||||
<#if comment_index < 6>
|
||||
<li id="${comment.oId}" class="fn-clear">
|
||||
<div class="fn-left avatar-warp">
|
||||
<img class="avatar-48" title="${comment.commentName}"
|
||||
alt="${comment.commentName}" src="${comment.commentThumbnailURL}">
|
||||
</div>
|
||||
<div class="fn-left" style="width: 90%">
|
||||
<div class="fn-clear post-meta">
|
||||
<span class="fn-left">
|
||||
<#if "http://" == comment.commentURL>
|
||||
<span>${comment.commentName}</span>
|
||||
<#else>
|
||||
<a href="${comment.commentURL}" target="_blank">${comment.commentName}</a>
|
||||
</#if>
|
||||
<time>${comment.commentDate?string("yy-MM-dd HH")}</time>
|
||||
</span>
|
||||
<a class="fn-right" href="${servePath}${comment.commentSharpURL}">${viewLabel}»</a>
|
||||
</div>
|
||||
<div class="comment-content">
|
||||
${comment.commentContent}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</#if>
|
||||
</#list>
|
||||
</ul>
|
||||
</#if>
|
||||
</main>
|
||||
|
||||
<#if 0 != mostCommentArticles?size || 0 != mostViewCountArticles?size>
|
||||
<aside class="read-next dynamic">
|
||||
<#if 0 != mostCommentArticles?size>
|
||||
<div class="read-next-story" style="background-image: url('${staticServePath}/skins/${skinDirName}/images/next.jpg')">
|
||||
<div>
|
||||
${mostCommentArticlesLabel}
|
||||
<ul>
|
||||
<#list mostCommentArticles as article>
|
||||
<li>
|
||||
<a href="${servePath}${article.articlePermalink}" title="${article.articleTitle}" rel="nofollow">
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
<span data-ico="">
|
||||
${article.articleCommentCount}
|
||||
</span>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</#if>
|
||||
<#if 0 != mostViewCountArticles?size>
|
||||
<section class="read-next-story prev" style="background-image: url('${staticServePath}/skins/${skinDirName}/images/preview.jpg')">
|
||||
<div>
|
||||
${mostViewCountArticlesLabel}
|
||||
<ul>
|
||||
<#list mostViewCountArticles as article>
|
||||
<li>
|
||||
<a href="${servePath}${article.articlePermalink}" title="${article.articleTitle}" rel="nofollow">
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
<span data-ico="">
|
||||
${article.articleViewCount}
|
||||
</span>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
</#if>
|
||||
</aside>
|
||||
</#if>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
<script>
|
||||
var $commentContents = $(".comments .comment-content");
|
||||
for (var i = 0; i < $commentContents.length; i++) {
|
||||
var str = $commentContents[i].innerHTML;
|
||||
$commentContents[i].innerHTML = Util.replaceEmString(str);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user