<% function layoutDiv() { var el = ''; if (page.breadcrumb === false) { return el; } var home_title = __("btn.home"); if (page.layout === "post") { var firstCat = ""; if (page.categories && page.categories.length > 0) { firstCat = page.categories.data[0].name; } el += '
'; el += '
'; el += ''; // 作者 var author = null if (theme.authors) { if (page.author?.length > 0 && theme.authors[page.author] != null) { author = theme.authors[page.author] } else { author = theme.default_author } } el += '
'; if (author) { let link = `${author.name}` el += `${__("meta.created_author", link)}` } else { el += `${__("meta.created")}` } // 发布日期 el += ` `; // 更新日期 el += ` ${__("symbol.comma") + __("meta.updated")}  `; el += '
'; el += '
'; el += '
'; } else if (page.topic?.length > 0) { el += '
'; el += '
'; el += ''; // 更新日期 el += '
'; el += ` ${__("meta.updated")}  `; el += '
'; el += '
'; el += '
'; } else if (page.layout === "wiki" && page.wiki?.length > 0) { el += '
'; el += '
'; el += ''; // 更新日期 el += '
'; el += ` ${__("meta.updated")}  `; el += '
'; el += '
'; const repo = page.repo || proj?.repo if (repo) { el += `
${icon('github:repo')} ${repo} ${icon('github:star')} 0stars ${icon('github:fork')} 0forks
`; } el += '
'; } else if (page.title) { el += `
`; } return el; } %> <%- layoutDiv() %>