hexo-theme-stellar/layout/_partial/cover/index.ejs

13 lines
200 B
Plaintext
Raw Normal View History

<%
function layoutCover() {
2024-01-19 01:05:44 +08:00
if (page.wiki) {
return partial('wiki_cover')
}
2024-01-30 23:48:00 +08:00
// if (page.layout === 'post') {
// return partial('post_cover')
// }
2024-01-19 01:05:44 +08:00
return ''
}
%>
<%- layoutCover() %>