2021-06-26 15:02:32 +08:00
|
|
|
<%
|
|
|
|
function layoutDiv() {
|
|
|
|
if (page.layout !== "wiki") {
|
|
|
|
return '';
|
|
|
|
}
|
2021-07-26 22:26:46 +08:00
|
|
|
var related = [];
|
2021-07-04 20:21:31 +08:00
|
|
|
let proj = theme.wiki.projects[page.wiki];
|
2021-07-26 22:26:46 +08:00
|
|
|
if (proj.related && proj.related.length > 0) {
|
|
|
|
proj.related.forEach((pid, i) => {
|
|
|
|
let p = theme.wiki.projects[pid];
|
|
|
|
if (p && p.title !== proj.title && p.index !== false) {
|
|
|
|
related.push(p);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
var el = '';
|
|
|
|
if (related.length > 0) {
|
|
|
|
el += '<div class="widget-wrap" id="related">';
|
|
|
|
el += '<div class="widget-header cap dis-select">';
|
|
|
|
var title = __('btn.wiki');
|
|
|
|
if (proj.tags && proj.tags[0]) {
|
|
|
|
title = proj.tags[0];
|
2021-07-04 20:21:31 +08:00
|
|
|
}
|
2021-07-26 22:26:46 +08:00
|
|
|
el += '<span class="name">' + __('meta.more', title) + '</span>';
|
|
|
|
el += '</div>';
|
|
|
|
el += '<div class="widget-body fs14">';
|
|
|
|
related.forEach((p, i) => {
|
|
|
|
// 同一个分组中的其它项目
|
|
|
|
el += '<a class="more-item wiki" href="' + url_for(p.homepage.path) + '">';
|
|
|
|
el += p.title;
|
|
|
|
el += '<div class="excerpt">';
|
|
|
|
el += p.description;
|
|
|
|
el += '</div>';
|
|
|
|
el += '</a>';
|
|
|
|
});
|
|
|
|
el += '</div>';
|
|
|
|
el += '</div>';
|
2021-07-04 20:21:31 +08:00
|
|
|
}
|
2021-06-26 15:02:32 +08:00
|
|
|
return el;
|
|
|
|
}
|
|
|
|
%>
|
|
|
|
<%- layoutDiv() %>
|