Signed-off-by: Vanessa <lly219@gmail.com>
44
favourite/archive-articles.ftl
Normal file
@@ -0,0 +1,44 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${archiveDate.archiveDateMonth} ${archiveDate.archiveDateYear} (${archiveDate.archiveDatePublishedArticleCount}) - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${archiveDate.archiveDateYear}${archiveDate.archiveDateMonth}"/>
|
||||
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<div class="kind-title">
|
||||
${archive1Label}
|
||||
</div>
|
||||
<div class="kind-panel">
|
||||
<#if "en" == localeString?substring(0, 2)>
|
||||
${archiveDate.archiveDateMonth} ${archiveDate.archiveDateYear} (${archiveDate.archiveDatePublishedArticleCount})
|
||||
<#else>
|
||||
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel} (${archiveDate.archiveDatePublishedArticleCount})
|
||||
</#if>
|
||||
</div>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
92
favourite/article-list.ftl
Normal file
@@ -0,0 +1,92 @@
|
||||
<#list articles as article>
|
||||
<div class="article">
|
||||
<h2 class="article-title">
|
||||
<a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}">
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
<#if article.hasUpdated>
|
||||
<sup class="red">
|
||||
${updatedLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
<#if article.articlePutTop>
|
||||
<sup class="red">
|
||||
${topArticleLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
</h2>
|
||||
<div class="posttime-blue">
|
||||
<div class="posttime-MY">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("yyyy-MM")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("yyyy-MM")}
|
||||
</#if>
|
||||
</div>
|
||||
<div class="posttime-D">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("dd")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("dd")}
|
||||
</#if>
|
||||
</div>
|
||||
</div>
|
||||
<div class="article-abstract">
|
||||
<div class="note">
|
||||
<div class="corner"></div>
|
||||
<div class="substance">
|
||||
${article.articleAbstract}
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="margin25">
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}" class="left">
|
||||
<span class="left article-browserIcon" title="${viewLabel}"></span>
|
||||
<span class="count">${article.articleViewCount}</span>
|
||||
</a>
|
||||
<div class="left">
|
||||
<span class="tagsIcon" title="${tagLabel}"></span>
|
||||
<#list article.articleTags?split(",") as articleTag>
|
||||
<span class="count">
|
||||
<a rel="tag" href="${servePath}/tags/${articleTag?url('UTF-8')}">
|
||||
${articleTag}</a><#if articleTag_has_next>,</#if>
|
||||
</span>
|
||||
</#list>
|
||||
</div>
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}#comments" class="left">
|
||||
<span class="left articles-commentIcon" title="${commentLabel}"></span>
|
||||
<span class="count">${article.articleCommentCount}</span>
|
||||
</a>
|
||||
<div class="right more">
|
||||
<a href="${servePath}${article.articlePermalink}" class="right">
|
||||
${readmoreLabel}
|
||||
</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</#list>
|
||||
<#if 0 != paginationPageCount>
|
||||
<div class="pagination">
|
||||
<#if 1 != paginationPageNums?first>
|
||||
<a href="${servePath}${path}/1">${firstPageLabel}</a>
|
||||
<a id="previousPage" href="${servePath}${path}/${paginationPreviousPageNum}">${previousPageLabel}</a>
|
||||
</#if>
|
||||
<#list paginationPageNums as paginationPageNum>
|
||||
<#if paginationPageNum == paginationCurrentPageNum>
|
||||
<a href="${servePath}${path}/${paginationPageNum}" class="selected">${paginationPageNum}</a>
|
||||
<#else>
|
||||
<a href="${servePath}${path}/${paginationPageNum}">${paginationPageNum}</a>
|
||||
</#if>
|
||||
</#list>
|
||||
<#if paginationPageNums?last != paginationPageCount>
|
||||
<a id="nextPage" href="${servePath}${path}/${paginationNextPageNum}">${nextPagePabel}</a>
|
||||
<a href="${servePath}${path}/${paginationPageCount}">${lastPageLabel}</a>
|
||||
</#if>
|
||||
${sumLabel} ${paginationPageCount} ${pageLabel}
|
||||
</div>
|
||||
</#if>
|
136
favourite/article.ftl
Normal file
@@ -0,0 +1,136 @@
|
||||
<#include "macro-head.ftl">
|
||||
<#include "macro-comments.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${article.articleTitle} - ${blogTitle}">
|
||||
<meta name="keywords" content="${article.articleTags}" />
|
||||
<meta name="description" content="${article.articleAbstract?html}" />
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<div class="article">
|
||||
<h2 class="article-title">
|
||||
<a class="no-underline" href="${servePath}${article.articlePermalink}">
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
<#if article.hasUpdated>
|
||||
<sup class="red">
|
||||
${updatedLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
<#if article.articlePutTop>
|
||||
<sup class="red">
|
||||
${topArticleLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
</h2>
|
||||
<div class="posttime-blue">
|
||||
<div class="posttime-MY">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("yyyy-MM")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("yyyy-MM")}
|
||||
</#if>
|
||||
</div>
|
||||
<div class="posttime-D">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("dd")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("dd")}
|
||||
</#if>
|
||||
</div>
|
||||
</div>
|
||||
<div class="article-abstract">
|
||||
<div class="note">
|
||||
<div class="corner"></div>
|
||||
<div class="substance article-body">
|
||||
${article.articleContent}
|
||||
<#if "" != article.articleSign.signHTML?trim>
|
||||
<div class="marginTop12">
|
||||
${article.articleSign.signHTML}
|
||||
</div>
|
||||
</#if>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="margin25">
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}" class="left">
|
||||
<span class="left article-browserIcon" title="${viewLabel}"></span>
|
||||
<span class="count">${article.articleViewCount}</span>
|
||||
</a>
|
||||
<div class="left">
|
||||
<span class="tagsIcon" title="${tagLabel}"></span>
|
||||
<#list article.articleTags?split(",") as articleTag>
|
||||
<span class="count">
|
||||
<a rel="tag" href="/tags/${articleTag?url('UTF-8')}">
|
||||
${articleTag}</a><#if articleTag_has_next>,</#if>
|
||||
</span>
|
||||
</#list>
|
||||
</div>
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}#comments" class="left">
|
||||
<span class="left articles-commentIcon" title="${commentLabel}"></span>
|
||||
<span class="count">${article.articleCommentCount}</span>
|
||||
</a>
|
||||
<div class="right">
|
||||
<a rel="nofollow" href="#comments" class="right">
|
||||
${replyLabel}
|
||||
</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<#if nextArticlePermalink??>
|
||||
<div class="right">
|
||||
<a href="${servePath}${nextArticlePermalink}">${nextArticle1Label}${nextArticleTitle}</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</#if>
|
||||
<#if previousArticlePermalink??>
|
||||
<div class="right">
|
||||
<a href="${servePath}${previousArticlePermalink}">${previousArticle1Label}${previousArticleTitle}</a>
|
||||
</div>
|
||||
</#if>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div id="relevantArticles" class="article-relative"></div>
|
||||
<div id="randomArticles" class="article-relative"></div>
|
||||
<div id="externalRelevantArticles" class="article-relative"></div>
|
||||
</div>
|
||||
<@comments commentList=articleComments article=article></@comments>
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
<@comment_script oId=article.oId>
|
||||
page.tips.externalRelevantArticlesDisplayCount = "${externalRelevantArticlesDisplayCount}";
|
||||
<#if 0 != randomArticlesDisplayCount>
|
||||
page.loadRandomArticles();
|
||||
</#if>
|
||||
<#if 0 != relevantArticlesDisplayCount>
|
||||
page.loadRelevantArticles('${article.oId}', '<h4>${relevantArticles1Label}</h4>');
|
||||
</#if>
|
||||
<#if 0 != externalRelevantArticlesDisplayCount>
|
||||
page.loadExternalRelevantArticles("<#list article.articleTags?split(",") as articleTag>${articleTag}<#if articleTag_has_next>,</#if></#list>");
|
||||
</#if>
|
||||
</@comment_script>
|
||||
</body>
|
||||
</html>
|
40
favourite/author-articles.ftl
Normal file
@@ -0,0 +1,40 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${authorName} - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${authorName}"/>
|
||||
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<div class="kind-title">
|
||||
${author1Label}
|
||||
</div>
|
||||
<div class="kind-panel">
|
||||
${authorName}
|
||||
</div>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
638
favourite/css/favourite.css
Normal file
@@ -0,0 +1,638 @@
|
||||
@charset "utf-8";
|
||||
/*
|
||||
* skin favoutite style
|
||||
*
|
||||
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
|
||||
* @version 1.0.0.7, May 14, 2012
|
||||
*/
|
||||
body {
|
||||
background: url("../images/bg.jpg") repeat scroll left top transparent;
|
||||
}
|
||||
a, a:link, a:active, a:visited {
|
||||
color: #2970A6;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: black;
|
||||
}
|
||||
h1 {
|
||||
font-size: 300%;
|
||||
}
|
||||
h4 {
|
||||
font-size: 160%;
|
||||
padding: 18px 0 0 80px;
|
||||
}
|
||||
h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
.margin5R {
|
||||
margin-right: 5px;
|
||||
}
|
||||
.margin5 {
|
||||
margin: 5px;
|
||||
}
|
||||
.margin25 {
|
||||
margin: 25px 25px 0;
|
||||
}
|
||||
.content {
|
||||
margin: 0 auto;
|
||||
width: 960px;
|
||||
}
|
||||
.header {
|
||||
height: 65px;
|
||||
padding: 15px 0 0 30px;
|
||||
}
|
||||
.body {
|
||||
background: url("../images/cont-bg.png") repeat-y scroll right center #FFFFFF;
|
||||
min-height: 400px;
|
||||
}
|
||||
.side-navi {
|
||||
background: url("../images/cont-bg.png") repeat-y scroll left top #00798A;
|
||||
color: white;
|
||||
font-size: 95%;
|
||||
line-height: 145%;
|
||||
padding-top: 8px;
|
||||
position: relative;
|
||||
width: 300px;
|
||||
}
|
||||
.side-navi ul {
|
||||
list-style: none;
|
||||
}
|
||||
.side-navi a {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.comm div {
|
||||
display: none;
|
||||
}
|
||||
.main {
|
||||
padding: 0 0 15px 35px;
|
||||
width: 600px;
|
||||
}
|
||||
.footer {
|
||||
color: white;
|
||||
line-height: 145%;
|
||||
}
|
||||
#logoTitle {
|
||||
color: white;
|
||||
display: block;
|
||||
font-family: "Microsoft YaHei";
|
||||
height: 50px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
.sub-title {
|
||||
border-top: 1px solid #FFFFFF;
|
||||
color: #FFFFFF;
|
||||
font-size: 18px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
#header-navi {
|
||||
background: none repeat scroll 0 0 #FFFFFF;
|
||||
border-bottom: 1px solid #A6A6A6;
|
||||
}
|
||||
#header-navi li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin-left: 0px;
|
||||
}
|
||||
#header-navi li a {
|
||||
background: url("../images/menu.gif") no-repeat scroll 0 0 transparent;
|
||||
color: #382E1F;
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
height: 31px;
|
||||
line-height: 31px;
|
||||
margin-left: -10px;
|
||||
outline: none;
|
||||
padding: 0 20px;
|
||||
text-decoration: none;
|
||||
}
|
||||
#header-navi li a:hover {
|
||||
background-position: 0 -31px;
|
||||
}
|
||||
#header-navi li a.home {
|
||||
background-position: 0 -93px;
|
||||
margin-left: 0;
|
||||
padding: 0;
|
||||
text-indent: -999em;
|
||||
width: 45px;
|
||||
}
|
||||
#header-navi li a.home:hover {
|
||||
background-position: 0 -124px;
|
||||
}
|
||||
#header-navi li a.lastNavi:hover {
|
||||
background-position: 0 0;
|
||||
}
|
||||
#header-navi li.selected a {
|
||||
background-position: 0 -62px;
|
||||
}
|
||||
#header-navi li.selected a.home {
|
||||
background-position: 0 -155px;
|
||||
}
|
||||
#statistic {
|
||||
left: 250px;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
top: 110px;
|
||||
width: 600px;
|
||||
}
|
||||
.footer .copyright {
|
||||
padding-top: 60px;
|
||||
text-align: center;
|
||||
}
|
||||
.footer .goTop {
|
||||
background: url("../images/icons.gif") no-repeat scroll 0 -304px transparent;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
padding-left: 16px;
|
||||
position: absolute;
|
||||
right: 17px;
|
||||
top: 0;
|
||||
width: 25px;
|
||||
}
|
||||
.article {
|
||||
border-top: 1px dotted #0184AF;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.article-title {
|
||||
font-size: 22px;
|
||||
margin-top: 10px;
|
||||
padding: 0 5px 3px;
|
||||
position: relative;
|
||||
top: 20px;
|
||||
}
|
||||
.article-title sup {
|
||||
font-size: 12px;
|
||||
}
|
||||
.article-title a {
|
||||
color: #4C4C4C;
|
||||
text-decoration: none;
|
||||
}
|
||||
.article-title a:hover {
|
||||
color: #2970A6;
|
||||
}
|
||||
.article-abstract {
|
||||
line-height: 145%;
|
||||
margin: 5px 0 5px 5px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.tagsIcon, .articles-commentIcon, .dateIcon, .article-browserIcon {
|
||||
background: url("../images/icons.gif") no-repeat scroll 0 -400px transparent;
|
||||
float: left;
|
||||
height: 30px;
|
||||
margin-right: 6px;
|
||||
width: 30px;
|
||||
}
|
||||
.tagsIcon {
|
||||
background: url("../images/tagsIcon.png");
|
||||
}
|
||||
.dateIcon {
|
||||
background-position: 0 -48px;
|
||||
}
|
||||
.articles-commentIcon {
|
||||
background: url("../images/comment.jpg");
|
||||
}
|
||||
.article-browserIcon {
|
||||
background: url("../images/category.jpg");
|
||||
}
|
||||
.article-body {
|
||||
line-height: 145%;
|
||||
padding: 5px 0 0 5px;
|
||||
}
|
||||
.article-footer {
|
||||
margin: 0 5px 10px 5px;
|
||||
}
|
||||
.article-relative {
|
||||
line-height: 22px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.article-relative h4 {
|
||||
font-size: 12px;
|
||||
padding: 0;
|
||||
}
|
||||
.comments {
|
||||
background: none repeat scroll 0 0 #FCFCFC;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
border-top: 1px solid #CCCCCC;
|
||||
margin: 15px -15px;
|
||||
padding: 0 15px 15px;
|
||||
position: relative;
|
||||
}
|
||||
.comment-title {
|
||||
background-color: #E3E9FF;
|
||||
border-top: 1px solid #3366CC;
|
||||
padding: 3px 12px 3px 12px;
|
||||
position: relative;
|
||||
}
|
||||
.comment-body-ref {
|
||||
background-color: #FFFFFF;
|
||||
filter: alpha(opacity=90);
|
||||
left: 217px;
|
||||
opacity: 0.9;
|
||||
padding: 6px;
|
||||
position: absolute;
|
||||
width: 605px;
|
||||
z-index: 10;
|
||||
}
|
||||
.comment-body {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.comment-author {
|
||||
float: left;
|
||||
text-align: center;
|
||||
width: 81px;
|
||||
}
|
||||
.comment-author div {
|
||||
background: url("../images/commentpoint.png") no-repeat scroll 100% 33% transparent;
|
||||
margin-top: 10px;
|
||||
padding-right: 14px;
|
||||
}
|
||||
.comment-author img {
|
||||
border: 1px solid #999999;
|
||||
height: 32px;
|
||||
padding: 1px;
|
||||
width: 32px;
|
||||
}
|
||||
.comment-author a {
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
margin-right: 14px;
|
||||
}
|
||||
.comment-info {
|
||||
background: url("../images/comment.gif") no-repeat scroll 0 0 #EDEFF0;
|
||||
font-size: 12px;
|
||||
margin: -62px 0 0 80px;
|
||||
padding: 10px 15px 0;
|
||||
width: 494px;
|
||||
}
|
||||
.comment-content {
|
||||
background: url("../images/comment.gif") no-repeat scroll 100% 100% transparent;
|
||||
font-size: 12px;
|
||||
line-height: 145%;
|
||||
margin: 0 -15px;
|
||||
overflow: hidden;
|
||||
padding: 9px 15px 10px;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.comment-form img {
|
||||
cursor: pointer;
|
||||
}
|
||||
.comment-form input, .comment-form textarea {
|
||||
background: url("../images/textfield.gif") repeat-x scroll 50% 0 #FFFFFF;
|
||||
border: 1px solid #A6A6A6;
|
||||
color: #555555;
|
||||
font-family: Helvetica,Arial,sans-serif;
|
||||
height: 16px;
|
||||
outline: none;
|
||||
padding: 2px 1px;
|
||||
width: 200px;
|
||||
}
|
||||
.comment-form textarea {
|
||||
font-size: 12px;
|
||||
height: auto;
|
||||
width: 600px;
|
||||
}
|
||||
.comment-form button {
|
||||
background: none repeat scroll 0 0 #B4D666;
|
||||
border-color: #B4D666 #81B840 #81B840 #B4D666;
|
||||
border-radius: 0px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
color: #2970A6;
|
||||
font-size: 12px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
padding: 0px 6px;
|
||||
}
|
||||
.comment-form button:hover {
|
||||
background: none repeat scroll 0 0 #98C64C;
|
||||
border-color: #76B33A #98C64C #98C64C #76B33A;
|
||||
color: #074A7E;
|
||||
}
|
||||
.em00, .em01, .em02, .em03, .em04, .em05, .em06, .em07, .em08, .em09, .em10, .em11, .em12, .em13, .em14 {
|
||||
background-image: url("../../favourite/images/emotions/emotions-blue.png");
|
||||
}
|
||||
.error-msg {
|
||||
color: #3366CC;
|
||||
}
|
||||
.side-navi .item {
|
||||
padding: 12px 15px;
|
||||
}
|
||||
.side-navi .navi-comments img {
|
||||
border: 1px solid #999999;
|
||||
height: 32px;
|
||||
margin-right: 7px;
|
||||
padding: 1px;
|
||||
width: 32px;
|
||||
}
|
||||
.side-navi .navi-comments a {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
.side-navi .navi-comments .side-comment {
|
||||
color: white;
|
||||
font-weight: normal;
|
||||
height: 18px;
|
||||
width: 210px;
|
||||
}
|
||||
.side-navi .navi-comments .side-comment img {
|
||||
border: 0px;
|
||||
height: 16px;
|
||||
margin-right: 0px;
|
||||
padding: 0px;
|
||||
width: 16px;
|
||||
}
|
||||
.side-navi .navi-comments li {
|
||||
padding: 2px 0;
|
||||
}
|
||||
.side-navi .navi-comments li div {
|
||||
width: 215px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
-o-text-overflow: ellipsis;
|
||||
}
|
||||
.side-navi a.selected {
|
||||
color: #555555;
|
||||
text-decoration: none;
|
||||
}
|
||||
.side-navi ul.navi-tags li, .side-navi .navi-comments li {
|
||||
background-image: none;
|
||||
padding-left: 0px;
|
||||
}
|
||||
.side-navi ul.navi-tags li img {
|
||||
height: 16px;
|
||||
padding-right: 6px;
|
||||
width: 16px;
|
||||
}
|
||||
.side-navi li {
|
||||
background: url("../images/pl.png") no-repeat scroll 0 0 transparent;
|
||||
margin: 5px 0 0 0;
|
||||
overflow: hidden;
|
||||
padding-left: 22px;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
-o-text-overflow: ellipsis;
|
||||
}
|
||||
.side-navi li.aboutMe {
|
||||
white-space: normal;
|
||||
}
|
||||
.side-navi .line {
|
||||
border-color: #67C3CF;
|
||||
border-style: dotted;
|
||||
border-width: 1px 0;
|
||||
}
|
||||
.pagination {
|
||||
margin: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
.pagination a, .pagination a:visited {
|
||||
color: #4272DB;
|
||||
padding: 0 3px;
|
||||
}
|
||||
.pagination a.selected {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
}
|
||||
#tagsPanel .tagPanel {
|
||||
border: 2px solid;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
margin: 3px;
|
||||
}
|
||||
#tagsPanel .tagPanel:hover {
|
||||
background-color: #EEEEEE;
|
||||
border: 2px dashed;
|
||||
}
|
||||
#tagsPanel .tagPanel {
|
||||
text-decoration: none;
|
||||
}
|
||||
.error-body {
|
||||
background: url("../images/cont-bg_2.png") repeat-y scroll left;
|
||||
height: 400px;
|
||||
padding: 12px;
|
||||
}
|
||||
.error-title {
|
||||
line-height: 72px;
|
||||
}
|
||||
.error-panel {
|
||||
margin: 0 auto;
|
||||
width: 201px;
|
||||
}
|
||||
.error-panel a {
|
||||
background: none repeat scroll 0 0 #9CD941;
|
||||
border-color: #D0F29D #398A38 #398A38 #D0F29D;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
color: #000000;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
margin-right: 3px;
|
||||
padding: 10px 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.error-panel a:hover {
|
||||
background-color: #ADEb51;
|
||||
}
|
||||
.kind-panel {
|
||||
background: url("../images/box.gif") no-repeat scroll 100% 100% #F4F5F7;
|
||||
margin-bottom: 10px;
|
||||
padding: 8px 12px;
|
||||
}
|
||||
.kind-title {
|
||||
background: url("../images/box.gif") no-repeat scroll 0 0 #E3E4E6;
|
||||
border-bottom: 1px solid #CCCCCC;
|
||||
font-weight: bold;
|
||||
padding: 6px 12px;
|
||||
}
|
||||
.top {
|
||||
background: url("../images/top-bg.jpg") repeat-x scroll left top transparent;
|
||||
border: none;
|
||||
color: white;
|
||||
height: 87px;
|
||||
}
|
||||
.footer-icon {
|
||||
background: url("../images/footer-ico.png") no-repeat scroll center center transparent;
|
||||
height: 133px;
|
||||
}
|
||||
.info {
|
||||
background: url("../images/info.png") repeat-x scroll left top transparent;
|
||||
height: 110px;
|
||||
position: relative;
|
||||
}
|
||||
.logoutIcon {
|
||||
background-position: -96px -16px;
|
||||
}
|
||||
#qq2 {
|
||||
float: right;
|
||||
padding: 68px 120px 0 0;
|
||||
}
|
||||
.thinks {
|
||||
background: url("../images/thinks.png") no-repeat scroll left top transparent;
|
||||
height: 420px;
|
||||
position: absolute;
|
||||
right: 12px;
|
||||
top: 36px;
|
||||
width: 388px;
|
||||
z-index: 1;
|
||||
}
|
||||
.lamb {
|
||||
background: url("../images/lamb.png") no-repeat scroll left top transparent;
|
||||
height: 80px;
|
||||
left: 460px;
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
width: 320px;
|
||||
}
|
||||
.lamb a {
|
||||
display: block;
|
||||
height: 80px;
|
||||
outline: none;
|
||||
width: 320px;
|
||||
}
|
||||
.null {
|
||||
height: 160px;
|
||||
}
|
||||
#navigation {
|
||||
height: 87px;
|
||||
margin: 0 auto;
|
||||
width: 960px;
|
||||
}
|
||||
#navigation a.classifiche {
|
||||
background: url("../images/classifiche.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
#navigation a.about {
|
||||
background: url("../images/about.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
#navigation a.home {
|
||||
background: url("../images/home.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
#navigation a.Guestbook {
|
||||
background: url("../images/Guestbook.png") no-repeat scroll left top transparent;
|
||||
}
|
||||
#navigation a {
|
||||
background: url("../images/default.png") no-repeat scroll left top transparent;
|
||||
color: #FFFFFF;
|
||||
cursor: pointer !important;
|
||||
float: left;
|
||||
height: 70px;
|
||||
margin-left: 10px;
|
||||
outline: none;
|
||||
padding-top: 2px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
width: 73px;
|
||||
}
|
||||
.admins {
|
||||
position: relative;
|
||||
top: -85px;
|
||||
}
|
||||
#mostCommentArticles li a,#mostViewCountArticles li a,.navi-tags li a,#sideLink li a,#save li a,#sideAuthor li a {
|
||||
color: white;
|
||||
}
|
||||
.roundtop {
|
||||
background: url("../images/roundtop.png") no-repeat scroll left top transparent;
|
||||
height: 75px;
|
||||
}
|
||||
.roundbottom {
|
||||
background: url("../images/roundbottom.png") no-repeat scroll left top transparent;
|
||||
height: 35px;
|
||||
}
|
||||
.paint {
|
||||
background: url("../images/paint.png") no-repeat scroll left top transparent;
|
||||
height: 183px;
|
||||
left: 34px;
|
||||
position: absolute;
|
||||
top: 450px;
|
||||
width: 87px;
|
||||
}
|
||||
.rings {
|
||||
background: url("../images/anelli.png") no-repeat scroll left top transparent;
|
||||
height: 121px;
|
||||
left: -28px;
|
||||
position: absolute;
|
||||
width: 56px;
|
||||
z-index: 80;
|
||||
}
|
||||
.antefatto {
|
||||
background: url("../images/twitter.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.ads {
|
||||
background: url("../images/ads.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.categorie {
|
||||
background: url("../images/categorie.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.archivio {
|
||||
background: url("../images/archivio.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.side-author {
|
||||
background: url("../images/antefatto.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.blog {
|
||||
background: url("../images/blog.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.cuore {
|
||||
background: url("../images/cuore.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.esclamativo {
|
||||
background: url("../images/esclamativo.png") no-repeat scroll left top transparent;
|
||||
height: 64px;
|
||||
}
|
||||
.posttime-blue {
|
||||
background-color: #0184AF;
|
||||
}
|
||||
.posttime-blue, .posttime-pink {
|
||||
border: 1px solid #999999;
|
||||
clear: right;
|
||||
color: #FFFFFF;
|
||||
float: right;
|
||||
font-family: Tohama,Arial,Helvetica,sans-serif;
|
||||
height: 60px;
|
||||
position: relative;
|
||||
right: 30px;
|
||||
top: -25px;
|
||||
width: 60px;
|
||||
}
|
||||
.posttime-MY {
|
||||
border-bottom: 1px solid #FFFFFF;
|
||||
font-size: 9px;
|
||||
height: 15px;
|
||||
padding-top: 5px;
|
||||
text-align: center;
|
||||
}
|
||||
.posttime-D {
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
.note {
|
||||
background: none repeat scroll 0 0 #E7F5F7;
|
||||
margin: 40px 0 0 -49px;
|
||||
padding: 10px 10px 10px 85px;
|
||||
position: relative;
|
||||
width: 574px;
|
||||
z-index: 50;
|
||||
}
|
||||
.corner {
|
||||
background: url("../images/corner.png") no-repeat scroll left top transparent;
|
||||
height: 9px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: -9px;
|
||||
width: 9px;
|
||||
}
|
||||
.count {
|
||||
position: relative;
|
||||
top: 8px;
|
||||
}
|
||||
.substance {
|
||||
width: 500px;
|
||||
}
|
52
favourite/footer.ftl
Normal file
@@ -0,0 +1,52 @@
|
||||
<div class="info">
|
||||
<div class="copyright">
|
||||
<span style="color:white;">© ${year}</span> - <a style="color:white;" href="${servePath}">${blogTitle}</a><br/>
|
||||
Powered by
|
||||
<a href="http://b3log-solo.googlecode.com" target="_blank" class="logo">
|
||||
${b3logLabel}
|
||||
<span style="color: orangered; font-weight: bold;">Solo</span></a>,
|
||||
ver ${version}
|
||||
Theme by <a style="color:white;" rel="friend" href="http://www.iprimidieci.com/" target="_blank">Primi</a> & <a rel="friend" style="color:white;" href="http://lamb.b3log.org" target="_blank">Lamb</a>.
|
||||
</div>
|
||||
<div class="right goTop">
|
||||
<span onclick="Util.goTop();">${goTopLabel}</span>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="${staticServePath}/js/lib/jquery/jquery.min.js" charset="utf-8"></script>
|
||||
<script type="text/javascript" src="${staticServePath}/js/common${miniPostfix}.js?${staticResourceVersion}" charset="utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
var latkeConfig = {
|
||||
"servePath": "${servePath}",
|
||||
"staticServePath": "${staticServePath}"
|
||||
};
|
||||
|
||||
var Label = {
|
||||
"clearAllCacheLabel": "${clearAllCacheLabel}",
|
||||
"clearCacheLabel": "${clearCacheLabel}",
|
||||
"adminLabel": "${adminLabel}",
|
||||
"logoutLabel": "${logoutLabel}",
|
||||
"skinDirName": "${skinDirName}",
|
||||
"loginLabel": "${loginLabel}",
|
||||
"em00Label": "${em00Label}",
|
||||
"em01Label": "${em01Label}",
|
||||
"em02Label": "${em02Label}",
|
||||
"em03Label": "${em03Label}",
|
||||
"em04Label": "${em04Label}",
|
||||
"em05Label": "${em05Label}",
|
||||
"em06Label": "${em06Label}",
|
||||
"em07Label": "${em07Label}",
|
||||
"em08Label": "${em08Label}",
|
||||
"em09Label": "${em09Label}",
|
||||
"em10Label": "${em10Label}",
|
||||
"em11Label": "${em11Label}",
|
||||
"em12Label": "${em12Label}",
|
||||
"em13Label": "${em13Label}",
|
||||
"em14Label": "${em14Label}"
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
Util.init();
|
||||
Util.replaceSideEm($(".side-navi .navi-comments .side-comment"));
|
||||
});
|
||||
</script>
|
||||
${plugins}
|
8
favourite/header.ftl
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="header">
|
||||
<h1 class="title">
|
||||
<a href="${servePath}" id="logoTitle" >
|
||||
${blogTitle}
|
||||
</a>
|
||||
</h1>
|
||||
<span class="sub-title">${blogSubtitle}</span>
|
||||
</div>
|
BIN
favourite/images/Guestbook.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/about.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
favourite/images/ads.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
favourite/images/anelli.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
favourite/images/antefatto.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
favourite/images/archivio.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
favourite/images/bg.jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
favourite/images/blog.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
favourite/images/box.gif
Normal file
After Width: | Height: | Size: 179 B |
BIN
favourite/images/categorie.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
BIN
favourite/images/category.jpg
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
favourite/images/classifiche.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
favourite/images/comment.gif
Normal file
After Width: | Height: | Size: 173 B |
BIN
favourite/images/comment.jpg
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
favourite/images/commentpoint.png
Normal file
After Width: | Height: | Size: 379 B |
BIN
favourite/images/cont-bg.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
favourite/images/cont-bg_2.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
favourite/images/corner.png
Normal file
After Width: | Height: | Size: 167 B |
BIN
favourite/images/cuore.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
favourite/images/default.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
favourite/images/emotions/em00.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
favourite/images/emotions/em01.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/emotions/em02.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/emotions/em03.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/emotions/em04.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em05.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em06.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em07.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em08.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
favourite/images/emotions/em09.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em10.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/emotions/em11.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
favourite/images/emotions/em12.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/emotions/em13.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
favourite/images/emotions/em14.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
favourite/images/emotions/emotions-blue.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
favourite/images/esclamativo.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
favourite/images/footer-ico.png
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
favourite/images/header.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
favourite/images/home.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
favourite/images/icons.gif
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
favourite/images/info.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
favourite/images/pl.png
Normal file
After Width: | Height: | Size: 988 B |
BIN
favourite/images/roundbottom.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
favourite/images/roundtop.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
favourite/images/tagsIcon.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
favourite/images/textfield.gif
Normal file
After Width: | Height: | Size: 57 B |
BIN
favourite/images/thinks.png
Normal file
After Width: | Height: | Size: 130 KiB |
BIN
favourite/images/top-bg.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
favourite/images/twitter.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
34
favourite/index.ftl
Normal file
@@ -0,0 +1,34 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords}"/>
|
||||
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
287
favourite/lang/lang_en_US.properties
Normal file
@@ -0,0 +1,287 @@
|
||||
#
|
||||
# Copyright (c) 2009, 2010, 2011, B3log Team
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#
|
||||
# Description: B3log Solo language configurations(en_US).
|
||||
# Version: 2.0.5.7, Sep 5, 2011
|
||||
# Author: Liang Ding
|
||||
#
|
||||
|
||||
adminConsoleLabel=Admin
|
||||
adminIndexLabel=Admin Index
|
||||
postArticleLabel=Post
|
||||
articleListLabel=Articles
|
||||
commentListLabel=Comments
|
||||
draftListLabel=Drafts
|
||||
userManageLabel=Users
|
||||
commonUserLabel=Common User
|
||||
addUserLabel=Add User
|
||||
updateUserLabel=Update User
|
||||
linkManagementLabel=Links
|
||||
pluginMgmtLabel=Plugins
|
||||
pluginNameLabel=Name
|
||||
versionLabel=Version
|
||||
statusLabel=Status
|
||||
enabledLabel=Enabled
|
||||
disabledLabel=Disabled
|
||||
enableLabel=Enable
|
||||
disableLabel=Disable
|
||||
preferenceLabel=Preference
|
||||
localeString1Label=Language:
|
||||
timeZoneId1Label=Time Zone:
|
||||
adminLabel=Admin
|
||||
administratorLabel=Administrator
|
||||
loginLabel=Login
|
||||
logoutLabel=Logout
|
||||
initLabel=Initial
|
||||
popTagsLabel=Popular Tags
|
||||
tag1Label=Tag:
|
||||
tags1Label=Tags:
|
||||
recentArticlesLabel=Recent Articles
|
||||
recentCommentsLabel=Recent Comments
|
||||
postCommentsLabel=Post Comment
|
||||
mostCommentArticlesLabel=Most Comment Articles
|
||||
mostViewCountArticlesLabel=Most View Articles
|
||||
em00Label=Smile
|
||||
em01Label=Laughter
|
||||
em02Label=Happy
|
||||
em03Label=Sad
|
||||
em04Label=Cry
|
||||
em05Label=No Comments
|
||||
em06Label=Fidget
|
||||
em07Label=Angry
|
||||
em08Label=Look Around
|
||||
em09Label=Surprise
|
||||
em10Label=Cool
|
||||
em11Label=Cheeky
|
||||
em12Label=Heart
|
||||
em13Label=Heart Broken
|
||||
em14Label=Devil
|
||||
linkLabel=Friend Links
|
||||
sumLabel=
|
||||
pageLabel=Page
|
||||
commentLabel=Comment
|
||||
linkTitleLabel=Link Title
|
||||
linkTitle1Label=Title:
|
||||
updateLabel=Update
|
||||
removeLabel=Remove
|
||||
putTopLabel=Put Top
|
||||
cancelPutTopLabel=Cancel Put Top
|
||||
downloadCountLabel=Count
|
||||
sizeLabel=Size
|
||||
uploadDateLabel=Upload Date
|
||||
downloadURLLabel=Download URL
|
||||
downloadLabel=Download
|
||||
createDateLabel=Create Date
|
||||
updateDateLabel=Update Date
|
||||
titleLabel=Title
|
||||
title1Label=Title:
|
||||
content1Label=Content:
|
||||
abstract1Label=Summary:
|
||||
publishLabel=Publish
|
||||
unPublishLabel=Un Publish
|
||||
urlLabel=URL
|
||||
url1Label=URL (start protocol, e.g.: http://):
|
||||
addLinkLabel=Add Link
|
||||
updateLinkLabel=Update Link
|
||||
archiveLabel=Archive
|
||||
archive1Label=archive:
|
||||
yearLabel=
|
||||
monthLabel=
|
||||
blogSyncLabel=Blog Sync
|
||||
pageLabel=Page
|
||||
pageMgmtLabel=Pages
|
||||
othersLabel=Others
|
||||
fileListLabel=Files
|
||||
submitUploadLabel=Upload
|
||||
fileNameLabel=File Name
|
||||
paramSettingsLabel=Parameters
|
||||
skinLabel=Skins
|
||||
signLabel=Signs
|
||||
sign1Label=Signs:
|
||||
noSignLabel=No Signs
|
||||
signIsNullLabel=This Sign is Null
|
||||
statisticLabel=Blog Statistic
|
||||
viewLabel=View
|
||||
countLabel=Posts
|
||||
viewCount1Label=View Count:
|
||||
articleCount1Label=Article Count:
|
||||
commentCountLabel=Comment Count
|
||||
commentCount1Label=Comment Count:
|
||||
commentEmotions1Label=Emotions:
|
||||
commentEmotionsLabel=Emotions
|
||||
commentName1Label=Name:
|
||||
commentNameLabel=Name
|
||||
commentEmail1Label=Email:
|
||||
commentEmailLabel=Email
|
||||
commentURL1Label=URL:
|
||||
commentURLLabel=URL
|
||||
commentContent1Label=Content:
|
||||
commentContentLabel=Content
|
||||
getDateLabel=Get Date
|
||||
getArticleLabel=Get Article
|
||||
selectDateLabel=Select Date
|
||||
selectDate1Label=Select Date:
|
||||
importLabel=Import
|
||||
chooseBlog1Label=Choose Blog:
|
||||
blogArticleImportLabel=Article Import
|
||||
blogSyncMgmtLabel=Blog Sync Management
|
||||
syncMgmtLabel=Sync manage Blog
|
||||
userName1Label=Username:
|
||||
userPassword1Label=Password:
|
||||
syncPostLabel=Sync Post
|
||||
syncUpdateLabel=Sync Update
|
||||
syncRemoveLabel=Sync Remove
|
||||
categoryLabel=Category
|
||||
noticeBoard1Label=Notice Board:
|
||||
noticeBoardLabel=Notice Board
|
||||
htmlhead1Label=HTML head:
|
||||
indexTagDisplayCnt1Label=Index Tag Display Count:
|
||||
indexRecentArticleDisplayCnt1Label=Recent Article Display Count:
|
||||
indexRecentCommentDisplayCnt1Label=Recent Comment Display Count:
|
||||
indexMostCommentArticleDisplayCnt1Label=Most Comment Article Display Count:
|
||||
indexMostViewArticleDisplayCnt1Label=Most View Article Display Count:
|
||||
relevantArticlesDisplayCnt1Label=Relevant Article Display Count:
|
||||
randomArticlesDisplayCnt1Label=Random Article Display Count:
|
||||
externalRelevantArticlesDisplayCnt1Label=External Relevant Article Display Count:
|
||||
windowSize1Label=Pagination Window Size:
|
||||
pageSize1Label=Pagination Page Size:
|
||||
blogTitle1Label=Blog Title:
|
||||
blogSubtitle1Label=Blog Subtitle:
|
||||
blogHost1Label=Blog Host:
|
||||
submmitCommentLabel=Commit Comment
|
||||
saveLabel=Save
|
||||
tagLabel=Tag
|
||||
tagsLabel=Tags
|
||||
importedLabel=Imported
|
||||
captcha1Label=Captcha:
|
||||
captchaLabel=Captcha
|
||||
clearAllCacheLabel=Clear all cache
|
||||
clearCacheLabel=Clear cache
|
||||
indexLabel=Index
|
||||
nextArticle1Label=Next:
|
||||
previousArticle1Label=Previous:
|
||||
updatedLabel=Updated!
|
||||
topArticleLabel=Top!
|
||||
CSDNBlogLabel=CSDN Blog
|
||||
BlogJavaLabel=BlogJava
|
||||
CnBlogsLabel=CnBlogs
|
||||
previousPageLabel=Previous Page
|
||||
nextPagePabel=Next Page
|
||||
firstPageLabel=First Page
|
||||
lastPageLabel=Last Page
|
||||
returnTo1Label=Return to:
|
||||
tencentLabel=Tencent
|
||||
appKey1Label=App Key:
|
||||
appSecret1Label=App Secret:
|
||||
postToTencentMicroblogWhilePublishArticleLabel=Post to Tencent microblog while publish an article:
|
||||
postToCommunityLabel=Post to Community:
|
||||
authorizeTencentMicroblog1Label=Click to authorize:
|
||||
googleLabel=Google
|
||||
OAuthConsumerSecret1Label=OAuth Consumer Secret:
|
||||
atomLabel=Atom
|
||||
relevantArticles1Label=Relevant Articles:
|
||||
randomArticles1Label=Random Articles:
|
||||
externalRelevantArticles1Label=External Relevant Articles:
|
||||
metaKeywords1Label=Meta Keywords:
|
||||
metaDescription1Label=Meta Description:
|
||||
removeUnusedTagsLabel=Remove Unused Tags
|
||||
goTopLabel=Top
|
||||
permalink1Label=Permalink:
|
||||
permalinkLabel=Permalink
|
||||
welcomeToSoloLabel=Welcome to B3log Solo!
|
||||
b3logLabel=<span style="color: orange;">B</span><span style="color: blue;"><sup>3</sup></span><span style="color: green;">L</span><span style="color: red;">O</span><span style="color: blue;">G</span>
|
||||
killBrowserLabel=<h2>Let's kill outdated and insecure browser!</h2><p>Let's kill outdated and insecure browser for browser evolution, human progress and better experience.</p><p>You can download</p><ul><li><a href="http://www.mozilla.com/" target="_blank">Firefox</a></li><li><a href="http://www.google.com/chrome" target="_blank">Chrome</a></li><li><a href="http://windows.microsoft.com/en-US/internet-explorer/downloads/ie" target="_blank">IE8 / IE9</a></li><li><a href="http://www.maxthon.com/" target="_blank">Maxthon</a> and <a href="http://www.google.com" target="_blank">so on</a>.</li></ul>
|
||||
readmoreLabel=Read more\u00bb
|
||||
readmore2Label=Read more
|
||||
replyLabel=Reply\u00bb
|
||||
homeLabel=Home
|
||||
enableArticleUpdateHint1Label=Enable Article Update Hint:
|
||||
allowVisitDraftViaPermalink1Label=Allow Visit Draft Via Link:
|
||||
author1Label=Author:
|
||||
authorLabel=Author
|
||||
keyOfSolo1Label=Solo Key:
|
||||
articleLabel=Article
|
||||
tagArticlesLabel=Tag Articles
|
||||
dateArticlesLabel=Archive Date Articles
|
||||
authorArticlesLabel=Author Articles
|
||||
indexArticleLabel=Index Articles
|
||||
allTagsLabel=Tag Cloud
|
||||
customizedPageLabel=Customized Page
|
||||
killBrowserPageLabel=Kill Browser Page
|
||||
pageNumLabel=Page Number
|
||||
####
|
||||
forbiddenLabel=Forbidden Access!
|
||||
sorryLabel=Sorry!
|
||||
notFoundLabel=Not Found!
|
||||
unPulbishSuccLabel=Un Publish Successfully
|
||||
unPulbishFailLabel=Un Publish Fail
|
||||
removeSuccLabel=Remove Successfully
|
||||
removeFailLabel=Remove Fail
|
||||
removeUserFailSkinNeedMulUsersLabel=Remove Fail, the current skin need multiple users!
|
||||
putTopSuccLabel=Put Top Successfully
|
||||
putTopFailLabel=Put Top Fail
|
||||
cancelTopSuccLabel=Cancel Top Successfully
|
||||
cancelTopFailLabel=Cancel Top Fail
|
||||
addSuccLabel=Add Successfully
|
||||
addFailLabel=Add Fail
|
||||
updateSuccLabel=Update Successfully
|
||||
updateFailLabel=Update Fail
|
||||
updatePreferenceFailLabel=Update Fail, please check <b>Blog Host</b> configuration!
|
||||
updatePreferenceFailNeedMulUsersLabel=Update Fail, the selected skin need multiple users!
|
||||
setFailLabel=Set Fail
|
||||
setSuccLabel=Set Successfully
|
||||
getFailLabel=Get Fail
|
||||
noSettingLabel=No Setting
|
||||
getSuccLabel=Get Successfully
|
||||
importSuccLabel=Import Successfully :-)
|
||||
importFailLabel=Some Import Fail %>_<%
|
||||
noCommentLabel=No Comment
|
||||
captchaErrorLabel=Captcha Error
|
||||
inputErrorLabel=Input Error!
|
||||
gotoLabel=Go
|
||||
nameEmptyLabel=Username is empty
|
||||
passwordEmptyLabel=Password is empty
|
||||
blogEmptyLabel=Blogging service is empty
|
||||
blogArticleEmptyLabel=Please select articles
|
||||
nameTooLongLabel=Sorry, your username must be between 2 and 20 characters long.
|
||||
mailCannotEmptyLabel=Mail is empty
|
||||
mailInvalidLabel=Mail is invalid
|
||||
commentContentCannotEmptyLabel=Sorry, your content must be between 2 and 500 characters long.
|
||||
captchaCannotEmptyLabel=Captcha is empty
|
||||
loadingLabel=Loading....
|
||||
titleEmptyLabel=Title is empty
|
||||
contentEmptyLabel=Content is empty
|
||||
orderEmptyLabel=Order is empty
|
||||
abstractEmptyLabel=Abstract is empty
|
||||
tagsEmptyLabel=Tags is empty
|
||||
addressEmptyLabel=Address is empty
|
||||
noAuthorizationURLLabel=Can not retrieve authorization URL from Google, please \
|
||||
make sure the <em>Consumer Secret</em> you typed in and then try again.
|
||||
exceedMaxUploadSizeLabel=Size exceed 1M :-(
|
||||
uploadFailLabel=Upload Fail!
|
||||
fileEmptyLabel=File is empty
|
||||
duplicatedPermalinkLabel=Duplicated permalink!
|
||||
invalidPermalinkFormatLabel=Invalid permalink format!
|
||||
duplicatedEmailLabel=Duplicated email!
|
||||
canntBeLocalhostOnProductionLabel=Can not set host as localhost on production!
|
||||
refreshAndRetryLabel=Please refresh and try again!
|
||||
noDataLable=NO Data
|
||||
editorLeaveLabel=Content is not null, Do you leave\uff1f
|
||||
editorPostLabel=Content is not null, Do you clear\uff1f
|
||||
####
|
||||
confirmRemoveLabel=Are You Sure?
|
||||
confirmInitLabel=Are You Sure?
|
287
favourite/lang/lang_zh_CN.properties
Normal file
@@ -0,0 +1,287 @@
|
||||
#
|
||||
# Copyright (c) 2009, 2010, 2011, B3log Team
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#
|
||||
# Description: B3log Solo default language configurations(zh_CN).
|
||||
# Version: 2.0.6.2, Sep 5, 2011
|
||||
# Author: Liang Ding
|
||||
#
|
||||
|
||||
adminConsoleLabel=\u540e\u53f0\u7ba1\u7406
|
||||
adminIndexLabel=\u540e\u53f0\u9996\u9875
|
||||
postArticleLabel=\u53d1\u5e03\u6587\u7ae0
|
||||
articleListLabel=\u6587\u7ae0\u7ba1\u7406
|
||||
commentListLabel=\u8bc4\u8bba\u7ba1\u7406
|
||||
draftListLabel=\u8349\u7a3f\u5939
|
||||
userManageLabel=\u7528\u6237\u7ba1\u7406
|
||||
commonUserLabel=\u4e00\u822c\u7528\u6237
|
||||
addUserLabel=\u6dfb\u52a0\u7528\u6237
|
||||
updateUserLabel=\u66f4\u65b0\u7528\u6237
|
||||
linkManagementLabel=\u94fe\u63a5\u7ba1\u7406
|
||||
pluginMgmtLabel=\u63d2\u4ef6\u7ba1\u7406
|
||||
pluginNameLabel=\u63d2\u4ef6\u540d
|
||||
versionLabel=\u7248\u672c
|
||||
statusLabel=\u72b6\u6001
|
||||
enabledLabel=\u5df2\u542f\u7528
|
||||
disabledLabel=\u5df2\u7981\u7528
|
||||
enableLabel=\u542f\u7528
|
||||
disableLabel=\u7981\u7528
|
||||
preferenceLabel=\u504f\u597d\u8bbe\u5b9a
|
||||
localeString1Label=\u8bed\u8a00\uff1a
|
||||
timeZoneId1Label=\u65f6\u533a\uff1a
|
||||
adminLabel=\u7ba1\u7406
|
||||
administratorLabel=\u7ba1\u7406\u5458
|
||||
loginLabel=\u767b\u5f55
|
||||
logoutLabel=\u767b\u51fa
|
||||
initLabel=\u521d\u59cb\u5316
|
||||
popTagsLabel=\u5206\u7c7b\u6807\u7b7e
|
||||
tag1Label=\u6807\u7b7e\uff1a
|
||||
tags1Label=\u6807\u7b7e\uff1a
|
||||
recentArticlesLabel=\u6700\u65b0\u6587\u7ae0
|
||||
recentCommentsLabel=\u6700\u65b0\u8bc4\u8bba
|
||||
postCommentsLabel=\u53d1\u8868\u8bc4\u8bba
|
||||
mostCommentArticlesLabel=\u8bc4\u8bba\u6700\u591a\u7684\u6587\u7ae0
|
||||
mostViewCountArticlesLabel=\u8bbf\u95ee\u6700\u591a\u7684\u6587\u7ae0
|
||||
em00Label=\u5fae\u7b11
|
||||
em01Label=\u5927\u7b11
|
||||
em02Label=\u9ad8\u5174
|
||||
em03Label=\u60b2\u4f24
|
||||
em04Label=\u54ed\u6ce3
|
||||
em05Label=\u65e0\u8bed
|
||||
em06Label=\u70e6\u8e81
|
||||
em07Label=\u751f\u6c14
|
||||
em08Label=\u6211\u7785
|
||||
em09Label=\u60ca\u8bb6
|
||||
em10Label=\u9177
|
||||
em11Label=\u987d\u76ae
|
||||
em12Label=\u7231\u5fc3
|
||||
em13Label=\u5fc3\u788e
|
||||
em14Label=\u9b54\u9b3c
|
||||
linkLabel=\u53cb\u60c5\u94fe\u63a5
|
||||
sumLabel=\u5171
|
||||
pageLabel=\u9875
|
||||
commentLabel=\u8bc4\u8bba
|
||||
linkTitleLabel=\u94fe\u63a5\u6807\u9898
|
||||
linkTitle1Label=\u6807\u9898\uff1a
|
||||
updateLabel=\u66f4\u65b0
|
||||
removeLabel=\u5220\u9664
|
||||
putTopLabel=\u7f6e\u9876
|
||||
cancelPutTopLabel=\u53d6\u6d88\u7f6e\u9876
|
||||
downloadCountLabel=\u4e0b\u8f7d\u6b21\u6570
|
||||
sizeLabel=\u5927\u5c0f
|
||||
uploadDateLabel=\u4e0a\u4f20\u65e5\u671f
|
||||
downloadURLLabel=\u4e0b\u8f7d\u5730\u5740
|
||||
downloadLabel=\u4e0b\u8f7d
|
||||
createDateLabel=\u521b\u5efa\u65e5\u671f
|
||||
updateDateLabel=\u66f4\u65b0\u65e5\u671f
|
||||
titleLabel=\u6807\u9898
|
||||
title1Label=\u6807\u9898\uff1a
|
||||
content1Label=\u6b63\u6587\uff1a
|
||||
abstract1Label=\u6458\u8981\uff1a
|
||||
publishLabel=\u53d1\u5e03
|
||||
unPublishLabel=\u53d6\u6d88\u53d1\u5e03
|
||||
urlLabel=URL
|
||||
url1Label=URL (\u8bf7\u4ee5\u534f\u8bae\u5f00\u5934\uff0c\u5982: http://)\uff1a
|
||||
addLinkLabel=\u6dfb\u52a0\u94fe\u63a5
|
||||
updateLinkLabel=\u66f4\u65b0\u94fe\u63a5
|
||||
archiveLabel=\u5b58\u6863
|
||||
archive1Label=\u5b58\u6863\uff1a
|
||||
yearLabel=\u5e74
|
||||
monthLabel=\u6708
|
||||
blogSyncLabel=\u535a\u5ba2\u540c\u6b65
|
||||
pageLabel=\u9875\u9762
|
||||
pageMgmtLabel=\u9875\u9762\u7ba1\u7406
|
||||
othersLabel=\u5176\u4ed6
|
||||
fileListLabel=\u6587\u4ef6\u7ba1\u7406
|
||||
submitUploadLabel=\u4e0a\u4f20
|
||||
fileNameLabel=\u6587\u4ef6\u540d
|
||||
paramSettingsLabel=\u53c2\u6570\u8bbe\u7f6e
|
||||
skinLabel=\u76ae\u80a4
|
||||
signLabel=\u7b7e\u540d\u6863
|
||||
sign1Label=\u7b7e\u540d\u6863\uff1a
|
||||
noSignLabel=\u4e0d\u4f7f\u7528\u7b7e\u540d\u6863
|
||||
signIsNullLabel=\u8be5\u7b7e\u540d\u6863\u4e3a\u7a7a
|
||||
statisticLabel=\u535a\u5ba2\u7edf\u8ba1
|
||||
viewLabel=\u6d4f\u89c8
|
||||
countLabel=\u7bc7
|
||||
viewCount1Label=\u6d4f\u89c8\u6b21\u6570\uff1a
|
||||
articleCount1Label=\u6587\u7ae0\u603b\u6570\uff1a
|
||||
commentCountLabel=\u8bc4\u8bba\u6570
|
||||
commentCount1Label=\u8bc4\u8bba\u603b\u6570\uff1a
|
||||
commentEmotions1Label=\u8868\u60c5\uff1a
|
||||
commentEmotionsLabel=\u8868\u60c5
|
||||
commentName1Label=\u59d3\u540d\uff1a
|
||||
commentNameLabel=\u59d3\u540d
|
||||
commentEmail1Label=\u90ae\u7bb1\uff1a
|
||||
commentEmailLabel=\u90ae\u7bb1
|
||||
commentURL1Label=URL\uff1a
|
||||
commentURLLabel=URL
|
||||
commentContent1Label=\u8bc4\u8bba\u5185\u5bb9\uff1a
|
||||
commentContentLabel=\u8bc4\u8bba\u5185\u5bb9
|
||||
getDateLabel=\u83b7\u53d6\u65e5\u671f
|
||||
getArticleLabel=\u83b7\u53d6\u6587\u7ae0
|
||||
selectDateLabel=\u9009\u62e9\u65e5\u671f
|
||||
selectDate1Label=\u9009\u62e9\u65e5\u671f\uff1a
|
||||
importLabel=\u5bfc\u5165
|
||||
chooseBlog1Label=\u8bf7\u9009\u62e9\u9700\u8981\u7ba1\u7406\u7684\u535a\u5ba2\uff1a
|
||||
blogArticleImportLabel=\u6587\u7ae0\u5bfc\u5165
|
||||
blogSyncMgmtLabel=\u535a\u5ba2\u540c\u6b65\u7ba1\u7406
|
||||
syncMgmtLabel=\u540c\u6b65\u7ba1\u7406\u535a\u5ba2
|
||||
userName1Label=\u7528\u6237\u540d\uff1a
|
||||
userPassword1Label=\u5bc6\u7801\uff1a
|
||||
syncPostLabel=\u540c\u6b65\u53d1\u5e03
|
||||
syncUpdateLabel=\u540c\u6b65\u66f4\u65b0
|
||||
syncRemoveLabel=\u540c\u6b65\u5220\u9664
|
||||
categoryLabel=\u5206\u7c7b
|
||||
noticeBoard1Label=\u516c\u544a\uff1a
|
||||
noticeBoardLabel=\u516c\u544a
|
||||
htmlhead1Label=HTML head\uff1a
|
||||
indexTagDisplayCnt1Label= \u9996\u9875\u6807\u7b7e\u663e\u793a\u6570\uff1a
|
||||
indexRecentArticleDisplayCnt1Label=\u6700\u65b0\u6587\u7ae0\u663e\u793a\u6570\u76ee\uff1a
|
||||
indexRecentCommentDisplayCnt1Label=\u6700\u65b0\u8bc4\u8bba\u663e\u793a\u6570\u76ee\uff1a
|
||||
indexMostCommentArticleDisplayCnt1Label=\u8bc4\u8bba\u6700\u591a\u6587\u7ae0\u663e\u793a\u6570\u76ee\uff1a
|
||||
indexMostViewArticleDisplayCnt1Label=\u8bbf\u95ee\u6700\u591a\u6700\u591a\u6587\u7ae0\u663e\u793a\u6570\u76ee\uff1a
|
||||
relevantArticlesDisplayCnt1Label=\u76f8\u5173\u9605\u8bfb\u663e\u793a\u6570\u76ee\uff1a
|
||||
randomArticlesDisplayCnt1Label=\u968f\u673a\u9605\u8bfb\u663e\u793a\u6570\u76ee\uff1a
|
||||
externalRelevantArticlesDisplayCnt1Label=\u7ad9\u5916\u76f8\u5173\u9605\u8bfb\u663e\u793a\u6570\u76ee\uff1a
|
||||
windowSize1Label=\u5206\u9875\u9875\u7801\u6700\u5927\u5bbd\u5ea6\uff1a
|
||||
pageSize1Label=\u5206\u9875\u6bcf\u9875\u663e\u793a\u6587\u7ae0\u6570\uff1a
|
||||
blogTitle1Label=\u535a\u5ba2\u6807\u9898\uff1a
|
||||
blogSubtitle1Label=\u535a\u5ba2\u5b50\u6807\u9898\uff1a
|
||||
blogHost1Label=\u535a\u5ba2\u5730\u5740\uff1a
|
||||
submmitCommentLabel=\u63d0\u4ea4\u8bc4\u8bba
|
||||
saveLabel=\u4fdd\u5b58
|
||||
tagLabel=\u6807\u7b7e
|
||||
tagsLabel=\u6807\u7b7e
|
||||
importedLabel=\u5df2\u5bfc\u5165
|
||||
captcha1Label=\u9a8c\u8bc1\u7801\uff1a
|
||||
captchaLabel=\u9a8c\u8bc1\u7801
|
||||
clearAllCacheLabel=\u6e05\u9664\u6240\u6709\u9875\u9762\u7f13\u5b58
|
||||
clearCacheLabel=\u6e05\u9664\u672c\u9875\u7f13\u5b58
|
||||
indexLabel=\u9996\u9875
|
||||
nextArticle1Label=\u65b0\u4e00\u7bc7\uff1a
|
||||
previousArticle1Label=\u65e7\u4e00\u7bc7\uff1a
|
||||
updatedLabel=\u6709\u66f4\u65b0\uff01
|
||||
topArticleLabel=\u7f6e\u9876\uff01
|
||||
CSDNBlogLabel=CSDN \u535a\u5ba2
|
||||
BlogJavaLabel=BlogJava
|
||||
CnBlogsLabel=\u535a\u5ba2\u56ed
|
||||
previousPageLabel=\u4e0a\u4e00\u9875
|
||||
nextPagePabel=\u4e0b\u4e00\u9875
|
||||
firstPageLabel=\u7b2c\u4e00\u9875
|
||||
lastPageLabel=\u6700\u540e\u4e00\u9875
|
||||
returnTo1Label=\u8fd4\u56de\uff1a
|
||||
tencentLabel=\u817e\u8baf
|
||||
appKey1Label=App Key:
|
||||
appSecret1Label=App Secret:
|
||||
postToTencentMicroblogWhilePublishArticleLabel=\u53d1\u6587\u7ae0\u65f6\u540c\u6b65\u5230\u817e\u8baf\u5fae\u535a\uff1a
|
||||
postToCommunityLabel=\u53d1\u5e03\u5230\u793e\u533a\uff1a
|
||||
authorizeTencentMicroblog1Label=\u70b9\u51fb\u56fe\u6807\u8fdb\u884c\u6388\u6743:
|
||||
googleLabel=Google
|
||||
OAuthConsumerSecret1Label=OAuth Consumer Secret\uff1a
|
||||
atomLabel=Atom
|
||||
relevantArticles1Label=\u76f8\u5173\u9605\u8bfb\uff1a
|
||||
randomArticles1Label=\u968f\u673a\u9605\u8bfb\uff1a
|
||||
externalRelevantArticles1Label=\u7ad9\u5916\u76f8\u5173\u9605\u8bfb\uff1a
|
||||
metaKeywords1Label=Meta Keywords:
|
||||
metaDescription1Label=Meta Description:
|
||||
removeUnusedTagsLabel=\u79fb\u9664\u672a\u4f7f\u7528\u6807\u7b7e
|
||||
goTopLabel=\u9876\u90e8
|
||||
permalink1Label=\u94fe\u63a5\uff1a
|
||||
permalinkLabel=\u94fe\u63a5
|
||||
welcomeToSoloLabel=\u6b22\u8fce\u4f7f\u7528 B3log Solo\uff01
|
||||
b3logLabel=<span style="color: orange;">B</span><span style="color: blue;"><sup>3</sup></span><span style="color: green;">L</span><span style="color: red;">O</span><span style="color: blue;">G</span>
|
||||
killBrowserLabel=<h2>\u8ba9\u6211\u4eec\u653e\u5f03\u4f7f\u7528\u90a3\u4e9b\u8fc7\u65f6\u3001\u4e0d\u5b89\u5168\u7684\u6d4f\u89c8\u5668\u5427\uff01</h2><p>\u4e3a\u4e86\u8ba9\u6d4f\u89c8\u5668\u66f4\u597d\u7684\u53d1\u5c55\uff0c\u4eba\u7c7b\u66f4\u52a0\u7684\u8fdb\u6b65\uff0c\u62e5\u6709\u66f4\u597d\u7684\u4f53\u9a8c\uff0c\u8ba9\u6211\u4eec\u653e\u5f03\u4f7f\u7528\u90a3\u4e9b\u8fc7\u65f6\u3001\u4e0d\u5b89\u5168\u7684\u6d4f\u89c8\u5668\u3002</p>\u60a8\u53ef\u4ee5\u4e0b\u8f7d<ul><li><a href="http://www.mozilla.com/" target="_blank">\u706b\u72d0</a></li><li><a href="http://www.google.com/chrome" target="_blank">\u8c37\u6b4c\u6d4f\u89c8\u5668</a></li><li><a href="http://windows.microsoft.com/en-US/internet-explorer/downloads/ie" target="_blank">IE8 / IE9</a></li><li><a href="http://www.maxthon.com/" target="_blank">\u9068\u6e38</a>\u6216\u8005<a href="http://www.google.com" target="_blank">\u5176\u5b83\u6d4f\u89c8\u5668</a>.</li></ul>
|
||||
readmoreLabel=\u9605\u8bfb\u66f4\u591a\u00bb
|
||||
readmore2Label=\u9605\u8bfb\u66f4\u591a
|
||||
replyLabel=\u56de\u590d\u00bb
|
||||
homeLabel=\u9996\u9875
|
||||
enableArticleUpdateHint1Label=\u542f\u7528\u6587\u7ae0\u66f4\u65b0\u63d0\u793a\uff1a
|
||||
allowVisitDraftViaPermalink1Label=\u5141\u8bb8\u901a\u8fc7\u94fe\u63a5\u8bbf\u95ee\u8349\u7a3f\uff1a
|
||||
author1Label=\u4f5c\u8005\uff1a
|
||||
authorLabel=\u4f5c\u8005
|
||||
keyOfSolo1Label=Solo Key\uff1a
|
||||
articleLabel=\u6587\u7ae0
|
||||
tagArticlesLabel=\u6807\u7b7e\u6587\u7ae0\u5217\u8868
|
||||
dateArticlesLabel=\u5b58\u6863\u6587\u7ae0\u5217\u8868
|
||||
authorArticlesLabel=\u4f5c\u8005\u6587\u7ae0\u5217\u8868
|
||||
indexArticleLabel=\u9996\u9875\u6587\u7ae0\u5217\u8868
|
||||
allTagsLabel=\u6807\u7b7e\u5899
|
||||
customizedPageLabel=\u81ea\u5b9a\u4e49\u9875\u9762
|
||||
killBrowserPageLabel=Kill Browser Page
|
||||
pageNumLabel=\u9875\u53f7
|
||||
####
|
||||
forbiddenLabel=\u64cd\u4f5c\u88ab\u7981\u6b62\uff01
|
||||
sorryLabel=\u5bf9\u4e0d\u8d77\uff01
|
||||
notFoundLabel=\u627e\u4e0d\u5230\uff01
|
||||
unPulbishSuccLabel=\u53d6\u6d88\u53d1\u5e03\u6210\u529f
|
||||
unPulbishFailLabel=\u53d6\u6d88\u53d1\u5e03\u5931\u8d25
|
||||
removeSuccLabel=\u5220\u9664\u6210\u529f
|
||||
removeFailLabel=\u5220\u9664\u5931\u8d25
|
||||
removeUserFailSkinNeedMulUsersLabel=\u5220\u9664\u5931\u8d25\uff0c\u5f53\u524d\u4f7f\u7528\u7684\u76ae\u80a4\u9700\u8981\u591a\u7528\u6237\u652f\u6301
|
||||
putTopSuccLabel=\u7f6e\u9876\u6210\u529f
|
||||
putTopFailLabel=\u7f6e\u9876\u5931\u8d25
|
||||
cancelTopSuccLabel=\u53d6\u6d88\u7f6e\u9876\u6210\u529f
|
||||
cancelTopFailLabel=\u53d6\u6d88\u7f6e\u9876\u5931\u8d25
|
||||
addSuccLabel=\u6dfb\u52a0\u6210\u529f
|
||||
addFailLabel=\u6dfb\u52a0\u5931\u8d25
|
||||
updateSuccLabel=\u66f4\u65b0\u6210\u529f
|
||||
updateFailLabel=\u66f4\u65b0\u5931\u8d25
|
||||
updatePreferenceFailLabel=\u66f4\u65b0\u5931\u8d25\uff0c\u8bf7\u4ed4\u7ec6\u68c0\u67e5\u201c\u535a\u5ba2\u5730\u5740\u201d\u7684\u914d\u7f6e\u662f\u5426\u6b63\u786e
|
||||
updatePreferenceFailNeedMulUsersLabel=\u66f4\u65b0\u5931\u8d25\uff0c\u9700\u8981\u591a\u7528\u6237\u624d\u80fd\u4f7f\u7528\u9009\u62e9\u7684\u76ae\u80a4
|
||||
setFailLabel=\u8bbe\u7f6e\u5931\u8d25
|
||||
setSuccLabel=\u8bbe\u7f6e\u6210\u529f
|
||||
getFailLabel=\u83b7\u53d6\u5931\u8d25
|
||||
noSettingLabel=\u8be5\u535a\u5ba2\u65e0\u8d26\u53f7\uff0c\u8bf7\u6dfb\u52a0
|
||||
getSuccLabel=\u83b7\u53d6\u6210\u529f
|
||||
importSuccLabel=\u5bfc\u5165\u6210\u529f :-)
|
||||
importFailLabel=\u90e8\u5206\u5bfc\u5165\u5931\u8d25 %>_<%
|
||||
noCommentLabel=\u6682\u65e0\u8bc4\u8bba
|
||||
captchaErrorLabel=\u9a8c\u8bc1\u7801\u9519\u8bef
|
||||
inputErrorLabel=\u8f93\u5165\u9519\u8bef\uff01
|
||||
gotoLabel=\u8df3\u8f6c
|
||||
nameEmptyLabel=\u59d3\u540d\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
passwordEmptyLabel=\u5bc6\u7801\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
blogEmptyLabel=\u8bf7\u9009\u62e9\u535a\u5ba2\u670d\u52a1\uff01
|
||||
blogArticleEmptyLabel=\u8bf7\u9009\u62e9\u9700\u8981\u5bfc\u5165\u7684\u6587\u7ae0
|
||||
nameTooLongLabel=\u59d3\u540d\u53ea\u80fd\u4e3a 2 \u5230 20 \u4e2a\u5b57\u7b26\uff01
|
||||
mailCannotEmptyLabel=\u90ae\u7bb1\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
mailInvalidLabel=\u90ae\u7bb1\u683c\u5f0f\u4e0d\u6b63\u786e\uff01
|
||||
commentContentCannotEmptyLabel=\u8bc4\u8bba\u5185\u5bb9\u53ea\u80fd\u4e3a 2 \u5230 500 \u4e2a\u5b57\u7b26\uff01
|
||||
captchaCannotEmptyLabel=\u9a8c\u8bc1\u7801\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
loadingLabel=\u8f7d\u5165\u4e2d....
|
||||
titleEmptyLabel=\u6807\u9898\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
contentEmptyLabel=\u5185\u5bb9\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
orderEmptyLabel=\u5e8f\u53f7\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
abstractEmptyLabel=\u6458\u8981\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
tagsEmptyLabel=\u6807\u7b7e\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
addressEmptyLabel=\u5730\u5740\u4e0d\u80fd\u4e3a\u7a7a\uff01
|
||||
noAuthorizationURLLabel=\u4ece Google \u83b7\u53d6\u6388\u6743\u5730\u5740\u5931\u8d25\uff0c\u8bf7\u786e\u8ba4\u60a8\u8f93\u5165\u7684 \
|
||||
<em>Consumer Secret</em> \u662f\u6b63\u786e\u7684\uff0c\u7136\u540e\u8fdb\u884c\u91cd\u8bd5\u3002
|
||||
exceedMaxUploadSizeLabel=\u76ee\u524d\u53ea\u80fd\u4e0a\u4f20\u5c0f\u4e8e 1M \u7684\u6587\u4ef6 :-(
|
||||
uploadFailLabel=\u4e0a\u4f20\u5931\u8d25\uff01
|
||||
fileEmptyLabel=\u6587\u4ef6\u4e3a\u7a7a\uff01
|
||||
duplicatedPermalinkLabel=\u94fe\u63a5\u91cd\u590d\uff01
|
||||
invalidPermalinkFormatLabel=\u975e\u6cd5\u7684\u94fe\u63a5\u683c\u5f0f\uff01
|
||||
duplicatedEmailLabel=\u90ae\u4ef6\u5730\u5740\u91cd\u590d\uff01
|
||||
canntBeLocalhostOnProductionLabel=GAE \u73af\u5883\u4e0a\u8bf7\u52ff\u6307\u5b9a\u535a\u5ba2\u5730\u5740\u4e3a localhost\uff01
|
||||
refreshAndRetryLabel=\u8bf7\u5237\u65b0\u91cd\u8bd5\uff01
|
||||
noDataLable=\u65e0\u6570\u636e
|
||||
editorLeaveLabel=\u7f16\u8f91\u5668\u4e2d\u8fd8\u6709\u5185\u5bb9\uff0c\u662f\u5426\u79bb\u5f00\uff1f
|
||||
editorPostLabel=\u7f16\u8f91\u5668\u4e2d\u8fd8\u6709\u5185\u5bb9\uff0c\u662f\u5426\u6e05\u7a7a\uff1f
|
||||
####
|
||||
confirmRemoveLabel=\u786e\u5b9a\u5220\u9664\uff1f
|
||||
confirmInitLabel=\u786e\u5b9a\u8fdb\u884c\u521d\u59cb\u5316\u5417\uff1f
|
172
favourite/macro-comments.ftl
Normal file
@@ -0,0 +1,172 @@
|
||||
<#macro comments commentList article>
|
||||
<div class="comments" id="comments">
|
||||
<#list commentList as comment>
|
||||
<div id="${comment.oId}" class="comment-body">
|
||||
<div class="comment-panel">
|
||||
<div class="left comment-author">
|
||||
<div>
|
||||
<img alt="${comment.commentName}" src="${comment.commentThumbnailURL}"/>
|
||||
</div>
|
||||
<#if "http://" == comment.commentURL>
|
||||
<a class="left" title="${comment.commentName}">${comment.commentName}</a>
|
||||
<#else>
|
||||
<a href="${comment.commentURL}" target="_blank" title="${comment.commentName}">${comment.commentName}</a>
|
||||
</#if>
|
||||
</div>
|
||||
<div class="left comment-info">
|
||||
<div class="left">
|
||||
${comment.commentDate?string("yyyy-MM-dd HH:mm:ss")}
|
||||
<#if comment.isReply>
|
||||
@
|
||||
<a href="${servePath}${article.permalink}#${comment.commentOriginalCommentId}"
|
||||
onmouseover="page.showComment(this, '${comment.commentOriginalCommentId}', 3);"
|
||||
onmouseout="page.hideComment('${comment.commentOriginalCommentId}')">${comment.commentOriginalCommentName}</a>
|
||||
</#if>
|
||||
</div>
|
||||
<#if article.commentable>
|
||||
<div class="right">
|
||||
<a rel="nofollow" class="no-underline"
|
||||
href="javascript:replyTo('${comment.oId}');">${replyLabel}</a>
|
||||
</div>
|
||||
</#if>
|
||||
<div class="clear">
|
||||
</div>
|
||||
<div class="comment-content">
|
||||
${comment.commentContent}
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
||||
</#list>
|
||||
</div>
|
||||
<#if article.commentable>
|
||||
<table id="commentForm" class="comment-form">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="208px">
|
||||
<input type="text" class="normalInput" id="commentName"/>
|
||||
</td>
|
||||
<td colspan="2" width="400px">
|
||||
${commentNameLabel}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" class="normalInput" id="commentEmail"/>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
${commentEmailLabel}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" id="commentURL"/>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
${commentURLLabel}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="emotions" colspan="3">
|
||||
<span class="em00" title="${em00Label}"></span>
|
||||
<span class="em01" title="${em01Label}"></span>
|
||||
<span class="em02" title="${em02Label}"></span>
|
||||
<span class="em03" title="${em03Label}"></span>
|
||||
<span class="em04" title="${em04Label}"></span>
|
||||
<span class="em05" title="${em05Label}"></span>
|
||||
<span class="em06" title="${em06Label}"></span>
|
||||
<span class="em07" title="${em07Label}"></span>
|
||||
<span class="em08" title="${em08Label}"></span>
|
||||
<span class="em09" title="${em09Label}"></span>
|
||||
<span class="em10" title="${em10Label}"></span>
|
||||
<span class="em11" title="${em11Label}"></span>
|
||||
<span class="em12" title="${em12Label}"></span>
|
||||
<span class="em13" title="${em13Label}"></span>
|
||||
<span class="em14" title="${em14Label}"></span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
<textarea rows="10" cols="96" id="comment"></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" class="normalInput" id="commentValidate"/>
|
||||
</td>
|
||||
<td>
|
||||
<img id="captcha" alt="validate" src="${servePath}/captcha.do" />
|
||||
</td>
|
||||
<th align="right">
|
||||
<span class="error-msg" id="commentErrorTip"></span>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="right">
|
||||
<button id="submitCommentButton" onclick="page.submitComment();">${submmitCommentLabel}</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</#if>
|
||||
</#macro>
|
||||
|
||||
<#macro comment_script oId>
|
||||
<script type="text/javascript" src="${staticServePath}/js/page${miniPostfix}.js?${staticResourceVersion}" charset="utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
var page = new Page({
|
||||
"nameTooLongLabel": "${nameTooLongLabel}",
|
||||
"mailCannotEmptyLabel": "${mailCannotEmptyLabel}",
|
||||
"mailInvalidLabel": "${mailInvalidLabel}",
|
||||
"commentContentCannotEmptyLabel": "${commentContentCannotEmptyLabel}",
|
||||
"captchaCannotEmptyLabel": "${captchaCannotEmptyLabel}",
|
||||
"captchaErrorLabel": "${captchaErrorLabel}",
|
||||
"loadingLabel": "${loadingLabel}",
|
||||
"oId": "${oId}",
|
||||
"skinDirName": "${skinDirName}",
|
||||
"blogHost": "${blogHost}",
|
||||
"randomArticles1Label": "${randomArticles1Label}",
|
||||
"externalRelevantArticles1Label": "${externalRelevantArticles1Label}"
|
||||
});
|
||||
|
||||
var addComment = function (result, state) {
|
||||
var commentHTML = '<div id="' + result.oId
|
||||
+ '" class="comment-body"><div class="comment-panel"><div class="left comment-author">'
|
||||
+ '<div><img alt="' + $("#commentName" + state).val() +
|
||||
'" src="' + result.commentThumbnailURL + '"/></div>' + result.replyNameHTML;
|
||||
|
||||
commentHTML += '</div><div class="left comment-info"><div class="left">' + result.commentDate;
|
||||
|
||||
if (state !== "") {
|
||||
var commentOriginalCommentName = $("#" + page.currentCommentId).find(".comment-author>a").text();
|
||||
commentHTML += ' @ <a href="${servePath}' + result.commentSharpURL.split("#")[0] + '#' + page.currentCommentId + '"'
|
||||
+ 'onmouseover="page.showComment(this, \'' + page.currentCommentId + '\', 3);"'
|
||||
+ 'onmouseout="page.hideComment(\'' + page.currentCommentId + '\')">' + commentOriginalCommentName + '</a>';
|
||||
}
|
||||
|
||||
commentHTML += '</div><div class="right"> <a rel="nofollow" class="no-underline" href="javascript:replyTo(\''
|
||||
+ result.oId + '\');">${replyLabel}</a>'
|
||||
+'</div><div class="clear"></div><div class="comment-content">'
|
||||
+ Util.replaceEmString($("#comment" + state).val().replace(/</g, "<").replace(/>/g, ">").replace(/\n/g,"<br/>"))
|
||||
+ '</div></div><div class="clear"></div></div></div>';
|
||||
|
||||
$("#comments").addClass("comments");
|
||||
return commentHTML;
|
||||
}
|
||||
|
||||
var replyTo = function (id) {
|
||||
var commentFormHTML = "<table class='marginTop12 comment-form' id='replyForm'>";
|
||||
page.addReplyForm(id, commentFormHTML);
|
||||
};
|
||||
|
||||
(function () {
|
||||
if ($("#comments div").length === 0) {
|
||||
$("#comments").removeClass("comments");
|
||||
}
|
||||
page.load();
|
||||
page.replaceCommentsEm("#comments .comment-content");
|
||||
<#nested>
|
||||
})();
|
||||
</script>
|
||||
</#macro>
|
15
favourite/macro-head.ftl
Normal file
@@ -0,0 +1,15 @@
|
||||
<#macro head title>
|
||||
<meta charset="utf-8" />
|
||||
<title>${title}</title>
|
||||
<#nested>
|
||||
<meta name="author" content="B3log Team" />
|
||||
<meta name="generator" content="B3log" />
|
||||
<meta name="copyright" content="B3log" />
|
||||
<meta name="revised" content="B3log, ${year}" />
|
||||
<meta http-equiv="Window-target" content="_top" />
|
||||
<link type="text/css" rel="stylesheet" href="${staticServePath}/css/default-base${miniPostfix}.css?${staticResourceVersion}" charset="utf-8" />
|
||||
<link type="text/css" rel="stylesheet" href="${staticServePath}/skins/${skinDirName}/css/${skinDirName}.css?${staticResourceVersion}" charset="utf-8" />
|
||||
<link href="${servePath}/blog-articles-feed.do" title="ATOM" type="application/atom+xml" rel="alternate" />
|
||||
<link rel="icon" type="image/png" href="${staticServePath}/favicon.png" />
|
||||
${htmlHead}
|
||||
</#macro>
|
11
favourite/nav.ftl
Normal file
@@ -0,0 +1,11 @@
|
||||
<div class="top">
|
||||
<div id="navigation">
|
||||
<a rel="nofollow" href="${servePath}" class="home">${homeLabel}</a>
|
||||
<a href="${servePath}/tags.html" class="about">${allTagsLabel}</a>
|
||||
<#list pageNavigations as page>
|
||||
<a href="${page.pagePermalink}" target="${page.pageOpenTarget}" class="${page.pageTitle}">${page.pageTitle}</a>
|
||||
</#list>
|
||||
<a rel="alternate" href="${servePath}/blog-articles-feed.do" class="classifiche">${atomLabel}</a>
|
||||
</div>
|
||||
<div class="thinks"></div>
|
||||
</div>
|
46
favourite/page.ftl
Normal file
@@ -0,0 +1,46 @@
|
||||
<#include "macro-head.ftl">
|
||||
<#include "macro-comments.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${page.pageTitle} - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${page.pageTitle}" />
|
||||
<meta name="description" content="${metaDescription}" />
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<div class="article">
|
||||
<div class="article-abstract">
|
||||
<div class="note">
|
||||
<div class="corner"></div>
|
||||
<div class="substance article-body">
|
||||
${page.pageContent}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<@comments commentList=pageComments article=page></@comments>
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
<@comment_script oId=page.oId></@comment_script>
|
||||
</body>
|
||||
</html>
|
BIN
favourite/preview.png
Normal file
After Width: | Height: | Size: 24 KiB |
159
favourite/side.ftl
Normal file
@@ -0,0 +1,159 @@
|
||||
<div id="sideNavi" class="side-navi">
|
||||
<div class="rings"></div>
|
||||
<div class="null"></div>
|
||||
<#if "" != noticeBoard>
|
||||
<div class="item">
|
||||
<div class="antefatto">
|
||||
<h4>${noticeBoardLabel}</h4>
|
||||
</div>
|
||||
<div class="marginLeft12 marginTop12">
|
||||
${noticeBoard}
|
||||
</div>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != recentComments?size>
|
||||
<div class="item navi-comments">
|
||||
<div class="ads">
|
||||
<h4 id="recentComments">${recentCommentsLabel}</h4>
|
||||
</div>
|
||||
<ul>
|
||||
<#list recentComments as comment>
|
||||
<li>
|
||||
<img class='left' title='${comment.commentName}'
|
||||
alt='${comment.commentName}'
|
||||
src='${comment.commentThumbnailURL}'/>
|
||||
<div class='left'>
|
||||
<div>
|
||||
<a href="${comment.commentURL}">
|
||||
${comment.commentName}
|
||||
</a>
|
||||
</div>
|
||||
<div class="comm">
|
||||
<a rel="nofollow" class='side-comment' href="${servePath}${comment.commentSharpURL}">
|
||||
${comment.commentContent}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class='clear'></div>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != mostCommentArticles?size>
|
||||
<div class="item">
|
||||
<div class="esclamativo">
|
||||
<h4>${mostCommentArticlesLabel}</h4>
|
||||
</div>
|
||||
<ul id="mostCommentArticles">
|
||||
<#list mostCommentArticles as article>
|
||||
<li>
|
||||
<a rel="nofollow" title="${article.articleTitle}" href="${servePath}${article.articlePermalink}">
|
||||
${article.articleTitle}
|
||||
</a>(${article.articleCommentCount})
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != mostViewCountArticles?size>
|
||||
<div class="item">
|
||||
<div class="cuore">
|
||||
<h4>${mostViewCountArticlesLabel}</h4>
|
||||
</div>
|
||||
<ul id="mostViewCountArticles">
|
||||
<#list mostViewCountArticles as article>
|
||||
<li>
|
||||
<a rel="nofollow" title="${article.articleTitle}" href="${servePath}${article.articlePermalink}">
|
||||
${article.articleTitle}
|
||||
</a>(${article.articleViewCount})
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != mostUsedTags?size>
|
||||
<div class="item">
|
||||
<div class="categorie">
|
||||
<h4>${popTagsLabel}</h4>
|
||||
</div>
|
||||
<ul class="navi-tags">
|
||||
<#list mostUsedTags as tag>
|
||||
<li>
|
||||
<a rel="alternate" href="${servePath}/tag-articles-feed.do?oId=${tag.oId}" class="no-underline">
|
||||
<img alt="${tag.tagTitle}" src="${staticServePath}/images/feed.png"/>
|
||||
</a>
|
||||
<a rel="tag" title="${tag.tagTitle}" href="${servePath}/tags/${tag.tagTitle?url('UTF-8')}">
|
||||
${tag.tagTitle}(${tag.tagPublishedRefCount})
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != links?size>
|
||||
<div class="item">
|
||||
<div class="blog">
|
||||
<h4>${linkLabel}</h4>
|
||||
</div>
|
||||
<ul id="sideLink" class="navi-tags">
|
||||
<#list links as link>
|
||||
<li>
|
||||
<a rel="friend" href="${link.linkAddress}" title="${link.linkTitle}" target="_blank">
|
||||
<img alt="${link.linkTitle}"
|
||||
src="http://www.google.com/s2/u/0/favicons?domain=<#list link.linkAddress?split('/') as x><#if x_index=2>${x}<#break></#if></#list>" /></a>
|
||||
<a rel="friend" href="${link.linkAddress}" title="${link.linkTitle}" target="_blank">
|
||||
${link.linkTitle}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 0 != archiveDates?size>
|
||||
<div class="item">
|
||||
<div class="archivio">
|
||||
<h4>${archiveLabel}</h4>
|
||||
</div>
|
||||
<ul id="save">
|
||||
<#list archiveDates as archiveDate>
|
||||
<li>
|
||||
<#if "en" == localeString?substring(0, 2)>
|
||||
<a href="${servePath}/archives/${archiveDate.archiveDateYear}/${archiveDate.archiveDateMonth}"
|
||||
title="${archiveDate.monthName} ${archiveDate.archiveDateYear}(${archiveDate.archiveDatePublishedArticleCount})">
|
||||
${archiveDate.monthName} ${archiveDate.archiveDateYear}</a>(${archiveDate.archiveDatePublishedArticleCount})
|
||||
<#else>
|
||||
<a href="${servePath}/archives/${archiveDate.archiveDateYear}/${archiveDate.archiveDateMonth}"
|
||||
title="${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel}(${archiveDate.archiveDatePublishedArticleCount})">
|
||||
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel}</a>(${archiveDate.archiveDatePublishedArticleCount})
|
||||
</#if>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
</#if>
|
||||
<#if 1 != users?size>
|
||||
<div class="item">
|
||||
<div class="side-author">
|
||||
<h4>${authorLabel}</h4>
|
||||
</div>
|
||||
<ul id="sideAuthor">
|
||||
<#list users as user>
|
||||
<li>
|
||||
<a href="${servePath}/authors/${user.oId}" title="${user.userName}">
|
||||
${user.userName}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
</#if>
|
||||
<div class="rings" style="bottom: 0px;"></div>
|
||||
</div>
|
26
favourite/skin.properties
Normal file
@@ -0,0 +1,26 @@
|
||||
#
|
||||
# Copyright (C) 2010, 2011, B3log Team
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#
|
||||
# Description: Favourite skin.
|
||||
# Version: 1.0.0.5, May 7, 2012
|
||||
# Author: Lamb Gao & Liyuan Li
|
||||
#
|
||||
|
||||
name=favourite
|
||||
version=2.0.3
|
||||
forSolo=0.4.5
|
||||
memo=Refers to http://www.iprimidieci.com/
|
23
favourite/statistic.ftl
Normal file
@@ -0,0 +1,23 @@
|
||||
<div class="left" id="statistic">
|
||||
<span>
|
||||
${viewCount1Label}
|
||||
<span class='error-msg'>
|
||||
${statistic.statisticBlogViewCount}
|
||||
</span>
|
||||
|
||||
</span>
|
||||
<span>
|
||||
${articleCount1Label}
|
||||
<span class='error-msg'>
|
||||
${statistic.statisticPublishedBlogArticleCount}
|
||||
</span>
|
||||
|
||||
</span>
|
||||
<span>
|
||||
${commentCount1Label}
|
||||
<span class='error-msg'>
|
||||
${statistic.statisticPublishedBlogCommentCount}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
<div class="clear"></div>
|
42
favourite/tag-articles.ftl
Normal file
@@ -0,0 +1,42 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${tag.tagTitle} - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${tag.tagTitle}"/>
|
||||
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<div class="kind-title">
|
||||
${tag1Label}
|
||||
</div>
|
||||
<div class="kind-panel">
|
||||
<a rel="alternate" href="${servePath}/tag-articles-feed.do?oId=${tag.oId}"><span id="tagArticlesTag">
|
||||
${tag.tagTitle}
|
||||
</span>(${tag.tagPublishedRefCount})</a>
|
||||
</div>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
47
favourite/tags.ftl
Normal file
@@ -0,0 +1,47 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${allTagsLabel} - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${allTagsLabel}"/>
|
||||
<meta name="description" content="<#list tags as tag>${tag.tagTitle}<#if tag_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "nav.ftl">
|
||||
<div class="wrapper">
|
||||
<div class="content">
|
||||
<#include "header.ftl">
|
||||
<div class="roundtop"></div>
|
||||
<div class="body">
|
||||
<div class="left main">
|
||||
<ul id="tags">
|
||||
<#list tags as tag>
|
||||
<li>
|
||||
<a rel="tag" data-count="${tag.tagPublishedRefCount}"
|
||||
href="${servePath}/tags/${tag.tagTitle?url('UTF-8')}" title="${tag.tagTitle}">
|
||||
<span>${tag.tagTitle}</span>
|
||||
(<b>${tag.tagPublishedRefCount}</b>)
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="right">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="roundbottom"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div class="footer-icon"><#include "statistic.ftl"></div>
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
Util.buildTags();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|