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