fix recent title
This commit is contained in:
parent
b23c4bac67
commit
4425216cac
|
@ -31,7 +31,7 @@ function layoutDiv() {
|
||||||
el += '<a class="more-item" href="' + url_for(post.link || post.path) + '">';
|
el += '<a class="more-item" href="' + url_for(post.link || post.path) + '">';
|
||||||
el += '<div class="cap">';
|
el += '<div class="cap">';
|
||||||
el += '<time>' + date(post.updated, config.date_format) + '</time>';
|
el += '<time>' + date(post.updated, config.date_format) + '</time>';
|
||||||
if (post.layout === 'wiki') {
|
if (post.layout == 'wiki') {
|
||||||
el += '<span>';
|
el += '<span>';
|
||||||
let proj = theme.wiki.projects[post.wiki];
|
let proj = theme.wiki.projects[post.wiki];
|
||||||
if (proj && proj.title) {
|
if (proj && proj.title) {
|
||||||
|
@ -47,7 +47,7 @@ function layoutDiv() {
|
||||||
}
|
}
|
||||||
el += '</div>';
|
el += '</div>';
|
||||||
el += '<span class="title">';
|
el += '<span class="title">';
|
||||||
el += post.title;
|
el += post.title || post.seo_title || post.wiki;
|
||||||
el += '</span>';
|
el += '</span>';
|
||||||
el += '</a>';
|
el += '</a>';
|
||||||
el += '';
|
el += '';
|
||||||
|
|
Loading…
Reference in New Issue