<% function layoutDiv() { // 作者 var el = '' el += `
` if (page.wiki) { el += `${__("meta.updated") + __("symbol.colon")}` el += `` el += `` } else if (page.notebook) { // 更新日期 el += `${__("meta.updated") + __("symbol.colon")}` el += `` el += `` // 发布日期 el += `` el += `` el += `${__("meta.created") + __("symbol.colon")}` el += `` el += `` } else { const author = theme.authors ? (theme.authors[page.author] || theme.default_author) : null if (author) { el += `${author.name}` el += `` } // 发布日期 el += `` if (!author) { el += `${__("meta.created") + __("symbol.colon")}` } el += `` el += `` // 更新日期 el += `` el += `` el += `${__("meta.updated") + __("symbol.colon")}` el += `` el += `` } el += `
` return el } %> <%- layoutDiv() %>