This commit is contained in:
Van
2019-08-02 22:16:31 +08:00
parent 1f94084f11
commit 64085edc97
54 changed files with 482 additions and 144 deletions

View File

@@ -34,15 +34,17 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle}
</a>
<#if article.hasUpdated>
<sup>
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop>
<sup>
${topArticleLabel}
</sup>
<sup>
${topArticleLabel}
</sup>
</#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h3>
<div class="vditor-reset">

View File

@@ -62,6 +62,7 @@ ${topBarReplacement}
</sup>
</#if>
</h2>
<br>
<div class="vditor-reset">
${article.articleContent}
</div>

File diff suppressed because one or more lines are too long

View File

@@ -19,7 +19,7 @@
* timeline skin style.
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.0.0, Jul 17, 2019
* @version 2.3.0.0, Aug 2, 2019
*/
@import "../../../scss/usite";
@import "../../../scss/toc";
@@ -537,6 +537,13 @@ article .article-title {
article .article-title > sup {
color: #6599C6;
font-size: 70%;
a {
color: #6599C6;
cursor: text;
&:visited {
color: #fff;
}
}
}
article .article-title a {

View File

@@ -69,16 +69,18 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle}
</a>
<#if article.hasUpdated>
<sup>
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop>
<sup>
${topArticleLabel}
</sup>
</#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h3>
<div class="vditor-reset">
${article.articleAbstract}

View File

@@ -19,7 +19,7 @@
* @fileoverview timeline js.
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 1.0.1.2, Jun 6, 2013
* @version 1.1.0.0, Aug 2, 2019
*/
var timeline = {
_COLHA: 0,
@@ -249,14 +249,15 @@ var timeline = {
+ Label.servePath + article.articlePermalink + '">'
+ article.articleTitle + '</a>';
if (article.hasUpdated) {
articlesHTML += '<sup>' + Label.updatedLabel + '</sup>';
}
if (article.articlePutTop) {
articlesHTML += '<sup>' + Label.topArticleLabel + '</sup>';
}
if (article.hasUpdated) {
articlesHTML += '<sup><a href="'
+ Label.servePath + article.articlePermalink + '">' + Label.updatedLabel + '</a></sup>';
}
articlesHTML += '</h3><p>' + article.articleAbstract + '</p>'
+ '<span class="ico-tags ico" title="' + Label.tagLabel + '">';

File diff suppressed because one or more lines are too long