proj
This commit is contained in:
parent
0c2b7722a1
commit
c121d20510
|
@ -62,7 +62,7 @@ function layoutDiv() {
|
|||
let url_proj = url_for(proj.homepage.path);
|
||||
if (nodes.includes(url_proj) === false) {
|
||||
el += '<span class="sep"></span>';
|
||||
el += '<a class="cap breadcrumb" id="proj" href="' + url_proj + '">' + proj.title + '</a>';
|
||||
el += '<a class="cap breadcrumb" id="proj" href="' + url_proj + '">' + (proj.name || proj.title) + '</a>';
|
||||
}
|
||||
el += '</div>';
|
||||
// 更新日期
|
||||
|
|
|
@ -16,7 +16,7 @@ function layoutDiv() {
|
|||
let tag = proj.tags[0];
|
||||
el += '<div class="cap breadcrumb"' + category_color(tag) + '>' + tag + '</div>';
|
||||
}
|
||||
el += '<h2 class="post-title">' + (proj.wiki || proj.title || proj.seo_title) + '</h2>';
|
||||
el += '<h2 class="post-title">' + (proj.title || proj.name || proj.seo_title) + '</h2>';
|
||||
if (proj.description) {
|
||||
el += '<p>' + proj.description + '</p>';
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ function layoutDiv() {
|
|||
}
|
||||
}
|
||||
if (proj != undefined) {
|
||||
let main = proj.title || proj.wiki || page.wiki || page.title;
|
||||
let main = proj.name || proj.title || proj.wiki || page.wiki || page.title;
|
||||
let url = proj.homepage.path;
|
||||
let sub = proj.subtitle;
|
||||
el += layoutTitle(main, url, sub);
|
||||
|
|
|
@ -31,8 +31,8 @@ function layoutDiv() {
|
|||
el += '<span class="title">'
|
||||
if (post.layout == 'wiki') {
|
||||
let proj = theme.wiki.projects[post.wiki];
|
||||
if (proj && proj.title) {
|
||||
el += proj.title + ' / ';
|
||||
if (proj && proj.name) {
|
||||
el += proj.name + ' / ';
|
||||
} else if (post.wiki) {
|
||||
el += post.wiki + ' / ';
|
||||
}
|
||||
|
|
|
@ -77,6 +77,9 @@ module.exports = hexo => {
|
|||
if (proj.title == undefined || proj.title.length === 0) {
|
||||
proj.title = id;
|
||||
}
|
||||
if (proj.name == undefined || proj.name.length == 0) {
|
||||
proj.name = id;
|
||||
}
|
||||
}
|
||||
// 补充 order
|
||||
wiki_pages.forEach((p, i) => {
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
margin: 0.5rem 0
|
||||
.wiki .post-title
|
||||
margin-top: 0.5rem
|
||||
font-weight: 700
|
||||
|
||||
// card
|
||||
.post-list .post-card
|
||||
|
|
|
@ -69,6 +69,7 @@
|
|||
color: $color-hover
|
||||
.widget-wrap#related .widget-body a
|
||||
margin-top: 0.5rem
|
||||
margin-bottom: 1rem
|
||||
.title
|
||||
font-weight: 700
|
||||
font-size: $fs-14
|
||||
|
|
Loading…
Reference in New Issue