<% function layoutDiv() { var el = ''; if (page.breadcrumb === false) { return el; } var home_title = __("btn.home"); if (theme.breadcrumb && theme.breadcrumb.home) { if (theme.breadcrumb.home === 'config.title') { home_title = config.title; } else if (theme.breadcrumb.home === 'config.author') { home_title = config.author; } else if (theme.breadcrumb.home !== 'home') { home_title = theme.breadcrumb.home; } } if (page.layout === "post") { var firstCat = ""; if (page.categories && page.categories.length > 0) { firstCat = page.categories.data[0].name; } el += '
'; el += ''; // 发布日期 el += '
'; el += __("meta.created") + ' '; el += '
'; el += '
'; } else if (page.layout === "wiki" && page.wiki && page.wiki.length > 0) { el += '
'; el += ''; // 更新日期 el += '
'; el += __("meta.updated") + ' '; el += '
'; el += '
'; } else if (page.title || page.seo_title) { el += '
'; el += ''; el += '
'; } return el; } %> <%- layoutDiv() %>