43
Andrea/archive-articles.ftl
Normal file
@@ -0,0 +1,43 @@
|
||||
<#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 "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<h2>${archive1Label}
|
||||
<#if "en" == localeString?substring(0, 2)>
|
||||
${archiveDate.archiveDateMonth} ${archiveDate.archiveDateYear} (${archiveDate.archiveDatePublishedArticleCount})
|
||||
<#else>
|
||||
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel} (${archiveDate.archiveDatePublishedArticleCount})
|
||||
</#if>
|
||||
</h2>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
70
Andrea/article-list.ftl
Normal file
@@ -0,0 +1,70 @@
|
||||
<dl>
|
||||
<#list articles as article>
|
||||
<dd class="article">
|
||||
<div class="date">
|
||||
<div class="month">${article.articleCreateDate?string("MM")}</div>
|
||||
<div class="day">${article.articleCreateDate?string("dd")}</div>
|
||||
</div>
|
||||
<div class="left">
|
||||
<h2>
|
||||
<a rel="bookmark" href="${servePath}${article.articlePermalink}" title="${tags1Label}${article.articleTags}">
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
<#if article.hasUpdated>
|
||||
<sup>
|
||||
${updatedLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
<#if article.articlePutTop>
|
||||
<sup>
|
||||
${topArticleLabel}
|
||||
</sup>
|
||||
</#if>
|
||||
</h2>
|
||||
<div class="article-date">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("yyyy HH:mm:ss")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("yyyy HH:mm:ss")}
|
||||
</#if>
|
||||
by
|
||||
<a rel="nofollow" class="underline" title="${article.authorName}" href="${servePath}/authors/${article.authorId}">
|
||||
${article.authorName}</a> |
|
||||
<a rel="nofollow" class="underline" href="${servePath}${article.articlePermalink}#comments">
|
||||
${article.articleCommentCount}${commentLabel}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="article-abstract article-body">
|
||||
${article.articleAbstract}
|
||||
<div class="clear"></div>
|
||||
<a class="right underline" href="${servePath}${article.articlePermalink}">
|
||||
${readmore2Label}...
|
||||
</a>
|
||||
<span class="clear"></span>
|
||||
</div>
|
||||
</dd>
|
||||
</#list>
|
||||
</dl>
|
||||
<#if 0 != paginationPageCount>
|
||||
<div class="pagination right">
|
||||
<#if 1 != paginationPageNums?first>
|
||||
<a href="${servePath}${path}/1" title="${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 title="${lastPageLabel}" href="${servePath}${path}/${paginationPageCount}">>></a>
|
||||
</#if>
|
||||
${sumLabel} ${paginationPageCount} ${pageLabel}
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</#if>
|
125
Andrea/article.ftl
Normal file
@@ -0,0 +1,125 @@
|
||||
<#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>
|
||||
<#if previousArticlePermalink??>
|
||||
<link rel="prev" title="${previousArticleTitle}" href="${servePath}${previousArticlePermalink}">
|
||||
</#if>
|
||||
<#if nextArticlePermalink??>
|
||||
<link rel="next" title="${nextArticleTitle}" href="${servePath}${nextArticlePermalink}">
|
||||
</#if>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<div class="article">
|
||||
<div class="date">
|
||||
<div class="month">${article.articleCreateDate?string("MM")}</div>
|
||||
<div class="day">${article.articleCreateDate?string("dd")}</div>
|
||||
</div>
|
||||
<div class="left">
|
||||
<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="article-date">
|
||||
<#if article.hasUpdated>
|
||||
${article.articleUpdateDate?string("yyyy HH:mm:ss")}
|
||||
<#else>
|
||||
${article.articleCreateDate?string("yyyy HH:mm:ss")}
|
||||
</#if>
|
||||
by
|
||||
<a rel="nofollow" title="${article.authorName}" href="${servePath}/authors/${article.authorId}">
|
||||
${article.authorName}</a> |
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}#comments">
|
||||
${article.articleCommentCount}${commentLabel}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="article-body">
|
||||
${article.articleContent}
|
||||
<#if "" != article.articleSign.signHTML?trim>
|
||||
<div class="marginTop12">
|
||||
${article.articleSign.signHTML}
|
||||
</div>
|
||||
</#if>
|
||||
</div>
|
||||
<div class="right">
|
||||
${tag1Label}
|
||||
<#list article.articleTags?split(",") as articleTag>
|
||||
<span>
|
||||
<a rel="tag" href="${servePath}/tags/${articleTag?url('UTF-8')}">
|
||||
${articleTag}</a><#if articleTag_has_next>,</#if>
|
||||
</span>
|
||||
</#list>
|
||||
${viewCount1Label}
|
||||
<a rel="nofollow" href="${servePath}${article.articlePermalink}">
|
||||
${article.articleViewCount}
|
||||
</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div>
|
||||
<#if nextArticlePermalink??>
|
||||
<a href="${servePath}${nextArticlePermalink}">${nextArticle1Label}${nextArticleTitle}</a>
|
||||
<br>
|
||||
</#if>
|
||||
<#if previousArticlePermalink??>
|
||||
<a href="${servePath}${previousArticlePermalink}">${previousArticle1Label}${previousArticleTitle}</a>
|
||||
</#if>
|
||||
</div>
|
||||
<div id="relevantArticles" class="article-relative left relevantArticles"></div>
|
||||
<div id="randomArticles" class="article-relative left"></div>
|
||||
<div class="clear"></div>
|
||||
<div id="externalRelevantArticles" class="article-relative"></div>
|
||||
</div>
|
||||
<@comments commentList=articleComments article=article></@comments>
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</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>
|
37
Andrea/author-articles.ftl
Normal file
@@ -0,0 +1,37 @@
|
||||
<#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 "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<h2>${author1Label}${authorName}</h2>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
41
Andrea/category-articles.ftl
Normal file
@@ -0,0 +1,41 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${category.categoryTitle} - ${blogTitle}">
|
||||
<meta name="keywords" content="${metaKeywords},${category.categoryTitle}"/>
|
||||
<meta name="description" content="<#list articles as article>${article.articleTitle}<#if article_has_next>,</#if></#list>"/>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<h2>
|
||||
${categoryLabel}:
|
||||
${category.categoryTitle}
|
||||
(${category.categoryTagCnt})<small> ${category.categoryDescription}</small>
|
||||
</h2>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
31
Andrea/common-comment.ftl
Normal file
@@ -0,0 +1,31 @@
|
||||
<div id="${comment.oId}"
|
||||
class="comment-body">
|
||||
<div class="comment-panel">
|
||||
<div class="left comment-author">
|
||||
<img alt="${comment.commentName}" src="${comment.commentThumbnailURL}"/>
|
||||
</div>
|
||||
<div class="left comment-info">
|
||||
<#if "http://" == comment.commentURL>
|
||||
<a>${comment.commentName}</a>
|
||||
<#else>
|
||||
<a href="${comment.commentURL}"
|
||||
target="_blank">${comment.commentName}</a>
|
||||
</#if><#if comment.isReply>
|
||||
@
|
||||
<a href="${servePath}${article.permalink}#${comment.commentOriginalCommentId}"
|
||||
onmouseover="page.showComment(this, '${comment.commentOriginalCommentId}', 20);"
|
||||
onmouseout="page.hideComment('${comment.commentOriginalCommentId}')">${comment.commentOriginalCommentName}</a>
|
||||
</#if>
|
||||
${comment.commentDate2?string("yyyy-MM-dd HH:mm:ss")}
|
||||
<div class="comment-content">
|
||||
${comment.commentContent}
|
||||
</div>
|
||||
<#if article.commentable>
|
||||
<div>
|
||||
<a rel="nofollow" href="javascript:replyTo('${comment.oId}');">${replyLabel}</a>
|
||||
</div>
|
||||
</#if>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
</div>
|
619
Andrea/css/Andrea.css
Normal file
@@ -0,0 +1,619 @@
|
||||
/**
|
||||
* Copyright (c) 2010-2017, b3log.org & hacpai.com
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
/*
|
||||
* skin andrea style
|
||||
*
|
||||
* @author <a href="mailto:LLY219@gmail.com">Liyuan Li</a>
|
||||
* @version 1.0.0.9, May 15, 2012
|
||||
*/
|
||||
body {
|
||||
background-image: url("../images/bg-grey.jpg");
|
||||
background-color: #000000;
|
||||
color: #363636;
|
||||
font-family: '\5fae\8f6f\96c5\9ed1, Arial,Verdana,sans-serif';
|
||||
font-size: 12px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a, a:link, a:visited {
|
||||
color: #BE0700;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: rgba(190, 7, 0, 0.75);
|
||||
}
|
||||
|
||||
/* common */
|
||||
.error-msg {
|
||||
color: #BE0700;
|
||||
}
|
||||
|
||||
.brush-icon, .article .month , .article .day, .pagination a, #greyBG,
|
||||
#brownBG, #blueBG, #goTop, .side-tool ul ul li a, .comment-form button {
|
||||
background-image: url('../images/icon.png');
|
||||
}
|
||||
|
||||
/* frame */
|
||||
.wrapper {
|
||||
width: 910px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.main {
|
||||
float: left;
|
||||
width: 627px;
|
||||
}
|
||||
|
||||
.side-navi {
|
||||
float: left;
|
||||
width: 282px;
|
||||
}
|
||||
|
||||
/* header */
|
||||
.header {
|
||||
background: url('../images/bgs.png') no-repeat;
|
||||
width: 910px;
|
||||
height: 185px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.header .left {
|
||||
width: 566px;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
margin: 18px 0 0 37px;
|
||||
}
|
||||
|
||||
.header .left a, .sub-title {
|
||||
color: #FFFFFF;
|
||||
font-family: '\5fae\8f6f\96c5\9ed1',Arial,Verdana,sans-serif;
|
||||
font-size: 46px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.sub-title {
|
||||
color: #000000;
|
||||
font-size: 22px;
|
||||
margin-left: 40px;
|
||||
margin-top: 0;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.header > .left > div {
|
||||
float: right;
|
||||
color: #C0BEBD;
|
||||
}
|
||||
|
||||
.header .right {
|
||||
width: 343px;
|
||||
}
|
||||
|
||||
.header .right ul {
|
||||
list-style-type: none
|
||||
}
|
||||
|
||||
.header .right li {
|
||||
float: left;
|
||||
margin: 18px 30px 0 0;
|
||||
width: 84px;
|
||||
}
|
||||
|
||||
.header .right li a {
|
||||
color: #FFFFFF;
|
||||
font-family: 'sans-serif';
|
||||
font-size: 45px;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.header .right li a:hover {
|
||||
color: #DDDDDD;
|
||||
font-family: 'sans-serif';
|
||||
}
|
||||
|
||||
/* main */
|
||||
.main-content {
|
||||
padding: 0 45px;
|
||||
background-color: #D4D4D4;
|
||||
}
|
||||
|
||||
.main-content > h2 {
|
||||
color: #BE0700;
|
||||
font-size: 20px;
|
||||
line-height: 145%;
|
||||
margin-bottom: 18px;
|
||||
font-family: '\5fae\8f6f\96c5\9ed1';
|
||||
}
|
||||
|
||||
.main-footer {
|
||||
background: url('../images/bgs.png') 0 -185px;
|
||||
height: 14px;
|
||||
width: 627px;
|
||||
}
|
||||
|
||||
.brush {
|
||||
left: -52px;
|
||||
position: absolute;
|
||||
top: 283px;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
#brush {
|
||||
background: url("../images/paint.png") no-repeat fixed 98px -150px transparent;
|
||||
position: relative;
|
||||
top: -27px;
|
||||
width: 82px;
|
||||
}
|
||||
|
||||
.brush-icon {
|
||||
background-position: 0 -312px;
|
||||
height: 240px;
|
||||
position: relative;
|
||||
width: 92px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.brush-icon:hover {
|
||||
background-position: 0 -69px;
|
||||
}
|
||||
|
||||
/* common articles */
|
||||
.article a.underline:hover {
|
||||
text-decoration: underline;
|
||||
color: #BE0700;
|
||||
}
|
||||
|
||||
.article .date {
|
||||
width: 40px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.article .month {
|
||||
color: #FFFFFF;
|
||||
height: 20px;
|
||||
text-align: center;
|
||||
width: 36px;
|
||||
}
|
||||
|
||||
.article .day {
|
||||
border: 1px solid #C4BFBA;
|
||||
border-top: 0px;
|
||||
background-position: 0px -20px;
|
||||
font-size: 15px;
|
||||
height: 23px;
|
||||
padding-top: 4px;
|
||||
text-align: center;
|
||||
width: 34px;
|
||||
}
|
||||
|
||||
.article h2 {
|
||||
margin-bottom: 3px;
|
||||
width: 495px;
|
||||
*line-height: 28px;
|
||||
}
|
||||
|
||||
.article h2 a {
|
||||
color: #363636;
|
||||
font-size: 24px;
|
||||
line-height: 24px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.article h2 a:hover {
|
||||
color: #BE0700;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.article h2 sup {
|
||||
color: #BE0700;
|
||||
font-size: 10px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.article-abstract {
|
||||
border-top: 2px dashed #F1EEE9;
|
||||
margin-top: 15px;
|
||||
padding: 20px 0 25px 0;
|
||||
overflow: hidden;
|
||||
line-height: 145%;
|
||||
}
|
||||
|
||||
.article-abstract p:first-child:first-letter, .article-abstract:first-letter {
|
||||
font-size: 38px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
margin: 0 3px 3px 0;
|
||||
line-height: 38px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
line-height: 21px;
|
||||
}
|
||||
|
||||
.pagination a {
|
||||
background-position: 0px -47px;
|
||||
border: 1px solid #C5C3C2;
|
||||
color: #8C8C8C;
|
||||
padding: 1px 6px;
|
||||
text-decoration: none;
|
||||
margin: 2px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.pagination a.selected {
|
||||
background: none #FFFFFF;
|
||||
border: 1px solid #C5C3C2;
|
||||
color: #3E3E3E;
|
||||
font-weight: bold;
|
||||
padding: 1px 7px 2px 6px;
|
||||
}
|
||||
|
||||
.pagination a:hover {
|
||||
background: none #F3DEDD;
|
||||
color: #BE0700;
|
||||
border: 1px solid #BE0700;
|
||||
}
|
||||
|
||||
/* side */
|
||||
.side-navi ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.side-navi .item {
|
||||
border-radius: 0 5px 5px 0;
|
||||
background: url("../images/bg-transparent.png") repeat scroll 0 0 transparent;
|
||||
border: 1px solid #999999;
|
||||
float: left;
|
||||
margin-top: 23px;
|
||||
padding: 25px 15px 15px;
|
||||
width: 250px;
|
||||
color: #EAE7E0;
|
||||
}
|
||||
|
||||
.side-navi .item dd {
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.side-navi .item dd li {
|
||||
list-style-type: none;
|
||||
border-bottom: 1px solid #93908A;
|
||||
padding: 4px 0px 1px 6px;
|
||||
margin-left: 0px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
-o-text-overflow: ellipsis;
|
||||
color: #EAE7E0;
|
||||
position: relative;
|
||||
line-height: 21px;
|
||||
}
|
||||
|
||||
.side-navi .item dd li:hover {
|
||||
background: url("../images/bg-transparent.png") repeat scroll 0 0 transparent;
|
||||
border-bottom: 1px solid #BAB8B5;
|
||||
}
|
||||
|
||||
.side-navi .item dd li:hover a {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.side-navi .item dd li a {
|
||||
white-space: nowrap;
|
||||
color: #EAE7E0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.side-navi .item .navi-tags img {
|
||||
cursor: pointer;
|
||||
height: 16px;
|
||||
left: 3px;
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.side-navi .item dd .navi-tags a {
|
||||
padding-left: 18px;
|
||||
}
|
||||
|
||||
#naviComments li a {
|
||||
white-space: normal;
|
||||
}
|
||||
#naviComments li br {
|
||||
display: none;
|
||||
}
|
||||
#naviComments li p {
|
||||
display: inline;
|
||||
}
|
||||
#naviComments li a.author {
|
||||
color: #BE0700;
|
||||
}
|
||||
|
||||
#naviComments li:hover {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
#naviComments li a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#naviComments img {
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
.side-navi .item h4 {
|
||||
border-bottom: 1px solid #93908A;
|
||||
color: #EAE7E0;
|
||||
padding: 0 5px 8px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
/* footer */
|
||||
.footer {
|
||||
background-image: url("../images/footer.png");
|
||||
color: #EAE7E0;
|
||||
height: 411px;
|
||||
padding: 21px 0 0 95px;
|
||||
width: 605px;
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* side tool */
|
||||
.side-tool {
|
||||
position: fixed;
|
||||
top: 30px;
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.side-tool li {
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.side-tool ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#greyBG, #brownBG, #blueBG {
|
||||
background-position: -103px 0;
|
||||
display: block;
|
||||
height: 21px;
|
||||
margin: 3px 0;
|
||||
width: 21px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#brownBG {
|
||||
background-position: -103px -26px;
|
||||
}
|
||||
|
||||
#blueBG {
|
||||
background-position: -103px -52px;
|
||||
}
|
||||
|
||||
#greyBG:hover, #greyBG.selected {
|
||||
background-position: -126px 0px;
|
||||
}
|
||||
|
||||
#brownBG:hover, #brownBG.selected {
|
||||
background-position: -126px -26px;
|
||||
}
|
||||
|
||||
#blueBG:hover, #blueBG.selected {
|
||||
background-position: -126px -52px;
|
||||
}
|
||||
|
||||
#goTop {
|
||||
background-position: -105px -119px;
|
||||
cursor: pointer;
|
||||
height: 36px;
|
||||
margin-top: 9px;
|
||||
display: block;
|
||||
width: 22px;
|
||||
}
|
||||
|
||||
#goTop:hover {
|
||||
background-position: -105px -74px;
|
||||
}
|
||||
|
||||
.side-tool ul ul li a {
|
||||
background-position: right -159px;
|
||||
color: #EAE7E0;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
height: 86px;
|
||||
margin: 9px 0;
|
||||
overflow: hidden;
|
||||
padding: 1px 8px 1px 9px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
width: 14px;
|
||||
word-wrap: break-word;
|
||||
text-transform:uppercase;
|
||||
}
|
||||
|
||||
/* article */
|
||||
.article-body {
|
||||
border-top: 2px dashed #F1EEE9;
|
||||
margin-top: 15px;
|
||||
overflow: hidden;
|
||||
padding: 20px 0 25px;
|
||||
line-height: 145%;
|
||||
}
|
||||
|
||||
.article-body p:first-child:first-letter, .article-body:first-letter{
|
||||
font-size: 48px;
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
margin: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.article-relative {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
.article-relative h4 {
|
||||
font-family: '\5fae\8f6f\96c5\9ed1',Arial,Verdana;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.article-relative ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#randomArticles, .relevantArticles {
|
||||
width: 262px;overflow: hidden;
|
||||
}
|
||||
|
||||
/* comments */
|
||||
#comments {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#comments, .comment-form {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.em00, .em01, .em02, .em03, .em04, .em05, .em06, .em07, .em08, .em09, .em10, .em11, .em12, .em13, .em14 {
|
||||
background-image: url("../../../images/emotions/emotions.png");
|
||||
background-size: 120px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.comment-form {
|
||||
margin-right: 15px;
|
||||
color: #606060;
|
||||
}
|
||||
|
||||
h2.comment-label {
|
||||
border-bottom: 2px solid #3F3D36;
|
||||
font-size: 24px;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 30px;
|
||||
padding-bottom: 7px;
|
||||
color: #363636;
|
||||
}
|
||||
|
||||
.comment-body {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.comment-body:nth-child(2n) {
|
||||
background-color: #F1EEE9;
|
||||
}
|
||||
|
||||
.comment-author {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.comment-info {
|
||||
margin-right: 12px;
|
||||
word-wrap:break-word;
|
||||
overflow: hidden;
|
||||
width: 423px;
|
||||
}
|
||||
|
||||
.comment-info > a {
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.comment-content {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.comment-author img {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
border: 6px solid #F1EEE9;
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.comment-form img {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.comment-form input, .comment-form textarea{
|
||||
border-radius:5px;
|
||||
background-color: #EBE9E5;
|
||||
border: 1px solid #BABAAE;
|
||||
font-family: \5fae\8f6f\96c5\9ed1;
|
||||
font-size: 12px;
|
||||
margin: 10px 0;
|
||||
padding: 10px;
|
||||
width: 400px;
|
||||
outline:none;
|
||||
}
|
||||
|
||||
.comment-form input:focus, .comment-form textarea:focus {
|
||||
background-color: #E3EBCF;
|
||||
border-color: #73B722;
|
||||
}
|
||||
|
||||
#commentValidate, #commentValidateReply {
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.comment-form button {
|
||||
border-radius: 5px;
|
||||
border: 1px solid #80B53B;
|
||||
color: #355207;
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
height: 34px;
|
||||
padding: 5px 10px;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.comment-body-ref {
|
||||
background: url("../images/bg-transparent.png") repeat scroll 0 0 transparent;
|
||||
padding: 12px 0;
|
||||
position: absolute;
|
||||
width: 537px;
|
||||
border: 1px solid #999999;
|
||||
border-radius: 5px;
|
||||
z-index: 10;
|
||||
left: 180px;
|
||||
}
|
||||
|
||||
/* others */
|
||||
#tagsPanel {
|
||||
min-height: 1px;
|
||||
}
|
||||
|
||||
#tagsPanel a {
|
||||
display: block;
|
||||
float: left;
|
||||
border: 1px solid #D4D4D4;
|
||||
}
|
||||
|
||||
#tagsPanel a:hover {
|
||||
border: 1px solid #BE0700;
|
||||
}
|
16
Andrea/css/Andrea.min.css
vendored
Normal file
88
Andrea/footer.ftl
Normal file
@@ -0,0 +1,88 @@
|
||||
<div class="copyright">
|
||||
© ${year} - <a href="${servePath}">${blogTitle}</a>${footerContent}<br/>
|
||||
Powered by <a href="http://b3log.org" target="_blank">B3log 开源</a> • <a href="https://hacpai.com/tag/solo" target="_blank">Solo</a> ${version}<br/>
|
||||
Theme by <a rel="friend" href="http://www.madeincima.eu/" target="_blank">Andrea</a> & <a rel="friend" href="http://vanessa.b3log.org" target="_blank">Vanessa</a>.
|
||||
</div>
|
||||
<script type="text/javascript" src="${staticServePath}/js/lib/jquery/jquery.min.js" charset="utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
var latkeConfig = {
|
||||
"servePath": "${servePath}",
|
||||
"staticServePath": "${staticServePath}"
|
||||
};
|
||||
|
||||
var Label = {
|
||||
"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}"
|
||||
};
|
||||
|
||||
// init brush
|
||||
var buildBrush = function () {
|
||||
$("#brush").height(document.documentElement.scrollHeight - document.documentElement.clientHeight).css("background-position",
|
||||
parseInt((document.documentElement.scrollWidth - 910) / 2 - 56) + "px -150px");
|
||||
};
|
||||
|
||||
// init
|
||||
$(document).ready(function () {
|
||||
Util.init();
|
||||
Util.replaceSideEm($("#naviComments li .side-comment"));
|
||||
|
||||
// brush
|
||||
buildBrush();
|
||||
|
||||
$(window).resize(function () {
|
||||
buildBrush();
|
||||
});
|
||||
|
||||
// bg
|
||||
$("#changeBG a").click(function () {
|
||||
if (this.className !== 'selected') {
|
||||
switch (this.id) {
|
||||
case "greyBG":
|
||||
$("body").css("background-image", "url(/skins/${skinDirName}/images/bg-grey.jpg)");
|
||||
break;
|
||||
case "blueBG":
|
||||
$("body").css("background-image", "url(/skins/${skinDirName}/images/bg-blue.jpg)");
|
||||
break;
|
||||
case "brownBG":
|
||||
$("body").css("background-image", "url(/skins/${skinDirName}/images/bg-brown.jpg)");
|
||||
break;
|
||||
}
|
||||
|
||||
$("#changeBG a").removeClass();
|
||||
this.className = "selected";
|
||||
}
|
||||
});
|
||||
|
||||
// page navi
|
||||
$(".side-tool li li a").hover(function () {
|
||||
if (parseInt($(this).css("padding-left")) === 9) {
|
||||
$(this).animate({
|
||||
"padding-left": "54px"
|
||||
}, 600 );
|
||||
}
|
||||
}, function () {
|
||||
$(this).animate({
|
||||
"padding-left": "9px"
|
||||
}, 600 );
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript" src="${staticServePath}/js/common${miniPostfix}.js?${staticResourceVersion}" charset="utf-8"></script>
|
||||
${plugins}
|
47
Andrea/header.ftl
Normal file
@@ -0,0 +1,47 @@
|
||||
<div class="header">
|
||||
<div class="left">
|
||||
<h1>
|
||||
<a href="${servePath}">
|
||||
${blogTitle}
|
||||
</a>
|
||||
</h1>
|
||||
<span class="sub-title">${blogSubtitle}</span>
|
||||
<div>
|
||||
<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>
|
||||
<span class="clear"></span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<ul>
|
||||
<li>
|
||||
<a rel="nofollow" class="home" href="${servePath}">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${servePath}/tags.html">Tags</a>
|
||||
</li>
|
||||
<li>
|
||||
<a rel="alternate" href="${servePath}/blog-articles-rss.do">
|
||||
RSS
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
BIN
Andrea/images/bg-blue.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
Andrea/images/bg-brown.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
Andrea/images/bg-grey.jpg
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
Andrea/images/bg-transparent.png
Normal file
After Width: | Height: | Size: 110 B |
BIN
Andrea/images/bgs.png
Normal file
After Width: | Height: | Size: 106 KiB |
BIN
Andrea/images/footer.png
Normal file
After Width: | Height: | Size: 130 KiB |
BIN
Andrea/images/icon.png
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
Andrea/images/paint.png
Normal file
After Width: | Height: | Size: 22 KiB |
40
Andrea/index.ftl
Normal file
@@ -0,0 +1,40 @@
|
||||
<#include "macro-head.ftl">
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<@head title="${blogTitle}">
|
||||
<#if metaKeywords??>
|
||||
<meta name="keywords" content="${metaKeywords}"/>
|
||||
</#if>
|
||||
<#if metaDescription??>
|
||||
<meta name="description" content="${metaDescription}"/>
|
||||
</#if>
|
||||
</@head>
|
||||
</head>
|
||||
<body>
|
||||
${topBarReplacement}
|
||||
<#include "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
270
Andrea/lang/lang_en_US.properties
Normal file
@@ -0,0 +1,270 @@
|
||||
#
|
||||
# Copyright (c) 2010-2017, b3log.org & hacpai.com
|
||||
#
|
||||
# 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
|
||||
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
|
||||
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?
|
270
Andrea/lang/lang_zh_CN.properties
Normal file
@@ -0,0 +1,270 @@
|
||||
#
|
||||
# Copyright (c) 2010-2017, b3log.org & hacpai.com
|
||||
#
|
||||
# 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
|
||||
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
|
||||
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
|
120
Andrea/macro-comments.ftl
Normal file
@@ -0,0 +1,120 @@
|
||||
<#macro comments commentList article>
|
||||
<h2 class="comment-label">${commentLabel}</h2>
|
||||
<div id="comments">
|
||||
<#list commentList as comment>
|
||||
<#include "common-comment.ftl"/>
|
||||
</#list>
|
||||
</div>
|
||||
<#if article.commentable>
|
||||
<table id="commentForm" class="comment-form" cellpadding="0" cellspacing="0">
|
||||
<tbody>
|
||||
<#if !isLoggedIn>
|
||||
<tr>
|
||||
<th width="115px">
|
||||
${commentNameLabel}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="commentName"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
${commentEmailLabel}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="commentEmail"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
${commentURLLabel}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="commentURL"/>
|
||||
</td>
|
||||
</tr>
|
||||
</#if>
|
||||
<tr>
|
||||
<th>
|
||||
${commentEmotionsLabel}
|
||||
</th>
|
||||
<td id="emotions">
|
||||
<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>
|
||||
<th valign="top">
|
||||
${commentContentLabel}
|
||||
</th>
|
||||
<td>
|
||||
<textarea rows="10" id="comment"></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<#if !isLoggedIn>
|
||||
<tr>
|
||||
<th>
|
||||
${captchaLabel}
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="commentValidate"/>
|
||||
<img id="captcha" alt="validate" src="${servePath}/captcha.do" />
|
||||
</td>
|
||||
</tr>
|
||||
</#if>
|
||||
<tr>
|
||||
<td colspan="2" align="right">
|
||||
<button class="right" id="submitCommentButton" onclick="page.submitComment();">${submmitCommentLabel}</button>
|
||||
<span style="margin-top: 13px;" class="right error-msg" id="commentErrorTip"></span>
|
||||
</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 replyTo = function (id) {
|
||||
var commentFormHTML = "<table class='comment-form' id='replyForm' cellpadding='0' cellspacing='0'>";
|
||||
|
||||
page.addReplyForm(id, commentFormHTML);
|
||||
};
|
||||
|
||||
(function () {
|
||||
page.load();
|
||||
// emotions
|
||||
page.replaceCommentsEm("#comments .comment-content");
|
||||
<#nested>
|
||||
})();
|
||||
</script>
|
||||
</#macro>
|
16
Andrea/macro-head.ftl
Normal file
@@ -0,0 +1,16 @@
|
||||
<#macro head title>
|
||||
<meta charset="utf-8" />
|
||||
<title>${title}</title>
|
||||
<#nested>
|
||||
<meta name="author" content="${blogTitle?html}" />
|
||||
<meta name="generator" content="B3log Solo" />
|
||||
<meta name="owner" content="B3log Team" />
|
||||
<meta name="revised" content="${blogTitle?html}, ${year}" />
|
||||
<meta name="copyright" content="B3log" />
|
||||
<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}${miniPostfix}.css?${staticResourceVersion}" charset="utf-8" />
|
||||
<link href="${servePath}/blog-articles-rss.do" title="RSS" type="application/rss+xml" rel="alternate" />
|
||||
<link rel="icon" type="image/png" href="${servePath}/favicon.png" />
|
||||
${htmlHead}
|
||||
</#macro>
|
43
Andrea/page.ftl
Normal file
@@ -0,0 +1,43 @@
|
||||
<#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 "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<div class="article">
|
||||
<div class="article-body" style="margin-top: 0px;">
|
||||
${page.pageContent}
|
||||
</div>
|
||||
</div>
|
||||
<@comments commentList=pageComments article=page></@comments>
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<@comment_script oId=page.oId></@comment_script>
|
||||
</body>
|
||||
</html>
|
BIN
Andrea/preview.png
Normal file
After Width: | Height: | Size: 26 KiB |
23
Andrea/side-tool.ftl
Normal file
@@ -0,0 +1,23 @@
|
||||
<div class="side-tool">
|
||||
<ul>
|
||||
<li>
|
||||
<ul>
|
||||
<#list pageNavigations as page>
|
||||
<li>
|
||||
<a href="${page.pagePermalink}" target="${page.pageOpenTarget}" title="${page.pageTitle}">
|
||||
${page.pageTitle}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</li>
|
||||
<li id="changeBG">
|
||||
<a title="grey" id="greyBG" class="selected"></a>
|
||||
<a title="brown" id="brownBG"></a>
|
||||
<a title="blue" id="blueBG"></a>
|
||||
</li>
|
||||
<li>
|
||||
<span id="goTop" onclick="Util.goTop();" title="${goTopLabel}"></span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
142
Andrea/side.ftl
Normal file
@@ -0,0 +1,142 @@
|
||||
<#if "" != noticeBoard>
|
||||
<div class="item" style="margin-top: -35px;">
|
||||
<h4>${noticeBoardLabel}</h4>
|
||||
<div class="marginLeft12 marginTop12">
|
||||
${noticeBoard}
|
||||
</div>
|
||||
</div>
|
||||
</#if>
|
||||
<#if 0 != recentComments?size || 0 != mostCommentArticles?size || 0 != mostViewCountArticles?size>
|
||||
<div class="item">
|
||||
<dl>
|
||||
<#if 0 != mostCommentArticles?size>
|
||||
<dd>
|
||||
<h4>${mostCommentArticlesLabel}</h4>
|
||||
<ul>
|
||||
<#list mostCommentArticles as article>
|
||||
<li>
|
||||
<a rel="nofollow" title="${article.articleTitle}" href="${servePath}${article.articlePermalink}">
|
||||
<sup>[${article.articleCommentCount}]</sup>
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</#if>
|
||||
<#if 0 != recentComments?size>
|
||||
<dd>
|
||||
<h4>${recentCommentsLabel}</h4>
|
||||
<ul id="naviComments">
|
||||
<#list recentComments as comment>
|
||||
<li>
|
||||
<a class="author" title="${comment.commentName}" target="_blank" href="${comment.commentURL}">
|
||||
${comment.commentName}
|
||||
</a>:
|
||||
<a rel="nofollow" class='side-comment' href="${servePath}/${comment.commentSharpURL}">
|
||||
${comment.commentContent}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</#if>
|
||||
<#if 0 != mostViewCountArticles?size>
|
||||
<dd>
|
||||
<h4>${mostViewCountArticlesLabel}</h4>
|
||||
<ul>
|
||||
<#list mostViewCountArticles as article>
|
||||
<li>
|
||||
<a rel="nofollow" title="${article.articleTitle}"
|
||||
href="${servePath}${article.articlePermalink}">
|
||||
<sup>[${article.articleViewCount}]</sup>
|
||||
${article.articleTitle}
|
||||
</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</#if>
|
||||
</dl>
|
||||
</div>
|
||||
</#if>
|
||||
|
||||
<#if 0 != mostUsedCategories?size || 0 != mostUsedTags?size>
|
||||
<div class="item">
|
||||
<dl>
|
||||
<#if 0 != mostUsedCategories?size>
|
||||
<dd>
|
||||
<h4>${categoryLabel}</h4>
|
||||
<ul>
|
||||
<#list mostUsedCategories as category>
|
||||
<li>
|
||||
<a href="${servePath}/category/${category.categoryURI}">
|
||||
${category.categoryTitle} (${category.categoryTagCnt})</a>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</#if>
|
||||
<#if 0 != mostUsedTags?size>
|
||||
<dd>
|
||||
<h4>${tagsLabel}</h4>
|
||||
<ul class="navi-tags">
|
||||
<#list mostUsedTags as tag>
|
||||
<li>
|
||||
<a rel="tag" title="${tag.tagTitle}(${tag.tagPublishedRefCount})" href="${servePath}/tags/${tag.tagTitle?url('UTF-8')}">
|
||||
${tag.tagTitle} (${tag.tagPublishedRefCount})</a>
|
||||
<img onclick="window.location='${servePath}/tag-articles-feed.do?oId=${tag.oId}'"
|
||||
alt="${tag.tagTitle}" src="${staticServePath}/images/feed.png"/>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</#if>
|
||||
</dl>
|
||||
</div>
|
||||
</#if>
|
||||
|
||||
<#if 0 != links?size>
|
||||
<div class="item">
|
||||
<dl>
|
||||
<dd>
|
||||
<h4>${linkLabel}</h4>
|
||||
<ul class="navi-tags">
|
||||
<#list links as link>
|
||||
<li>
|
||||
<a rel="friend" href="${link.linkAddress}" title="${link.linkTitle}" target="_blank">
|
||||
${link.linkTitle}</a>
|
||||
<img onclick="window.location='${link.linkAddress}'"
|
||||
alt="${link.linkTitle}"
|
||||
src="${faviconAPI}<#list link.linkAddress?split('/') as x><#if x_index=2>${x}<#break></#if></#list>" width="16" height="16" />
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</#if>
|
||||
<#if 0 != archiveDates?size>
|
||||
<div class="item">
|
||||
<dl>
|
||||
<dd>
|
||||
<h4>${archiveLabel}</h4>
|
||||
<ul>
|
||||
<#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} (${archiveDate.archiveDatePublishedArticleCount})</a>
|
||||
<#else>
|
||||
<a href="${servePath}/archives/${archiveDate.archiveDateYear}/${archiveDate.archiveDateMonth}"
|
||||
title="${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel}(${archiveDate.archiveDatePublishedArticleCount})">
|
||||
${archiveDate.archiveDateYear} ${yearLabel} ${archiveDate.archiveDateMonth} ${monthLabel} (${archiveDate.archiveDatePublishedArticleCount})</a>
|
||||
</#if>
|
||||
</li>
|
||||
</#list>
|
||||
</ul>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</#if>
|
24
Andrea/skin.properties
Normal file
@@ -0,0 +1,24 @@
|
||||
#
|
||||
# Copyright (c) 2010-2017, b3log.org & hacpai.com
|
||||
#
|
||||
# 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: Andrea skin.
|
||||
# Version: 1.0.0.8, Nov 21, 2012
|
||||
# Author: Liyuan Li
|
||||
#
|
||||
|
||||
name=Andrea
|
||||
memo=Refers to http://www.madeincima.eu
|
40
Andrea/tag-articles.ftl
Normal file
@@ -0,0 +1,40 @@
|
||||
<#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 "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<h2>
|
||||
${tag1Label}
|
||||
<a rel="alternate" href="${servePath}/tag-articles-feed.do?oId=${tag.oId}">${tag.tagTitle}(${tag.tagPublishedRefCount})</a>
|
||||
</h2>
|
||||
<#include "article-list.ftl">
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
50
Andrea/tags.ftl
Normal file
@@ -0,0 +1,50 @@
|
||||
<#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 "side-tool.ftl">
|
||||
<div class="wrapper">
|
||||
<#include "header.ftl">
|
||||
<div>
|
||||
<div class="main">
|
||||
<div class="main-content">
|
||||
<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 class="clear"></div>
|
||||
</div>
|
||||
<div class="main-footer"></div>
|
||||
</div>
|
||||
<div class="side-navi">
|
||||
<#include "side.ftl">
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div class="brush">
|
||||
<div class="brush-icon"></div>
|
||||
<div id="brush"></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<#include "footer.ftl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
Util.buildTags();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|