This commit is contained in:
xaoxuu 2022-10-27 22:02:47 +08:00
parent 0c2b7722a1
commit c121d20510
7 changed files with 9 additions and 6 deletions

View File

@ -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>';
// 更新日期

View File

@ -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>';
}

View File

@ -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);

View File

@ -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 + ' / ';
}

View File

@ -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) => {

View File

@ -20,7 +20,6 @@
margin: 0.5rem 0
.wiki .post-title
margin-top: 0.5rem
font-weight: 700
// card
.post-list .post-card

View File

@ -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