This commit is contained in:
@@ -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">
|
||||
|
@@ -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
@@ -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 {
|
||||
|
@@ -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}
|
||||
|
@@ -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 + '">';
|
||||
|
||||
|
2
timeline/js/timeline.min.js
vendored
2
timeline/js/timeline.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user