<% // 页面类型:索引页面还是内容页面 var page_type = 'index' if (['post', 'page', 'wiki', null].includes(page.layout)) { if (!page.nav_tabs) { page_type = 'content' } } // 文章类型:技术类文章/文学类文章 var article_type = theme.article.type if (page.type?.length > 0) { article_type = page.type } // 是否缩进 var indent = false if (page.indent != null) { indent = page.indent } else if (page.topic && theme.topic.tree[page.topic] && (theme.topic.tree[page.topic].indent != null)) { indent = theme.topic.tree[page.topic].indent } else if (page.wiki && theme.wiki.tree[page.wiki] && (theme.wiki.tree[page.wiki].indent != null)) { indent = theme.wiki.tree[page.wiki].indent } else if (theme.article.indent) { indent = theme.article.indent } else { indent = article_type === 'story' } var html = `` html += `` html += partial('_partial/head') html += `` html += partial('_partial/cover/index') html += `
` html += `` html += `
` html += partial('_partial/sidebar/logo', {where: 'main'}) html += body html += partial('_partial/main/footer') html += partial('_partial/menubtn') html += `
` html += `
` html += `
` html += `
` html += partial('_partial/scripts/index') html += `
` html += `` html += `` %> <%- html %>