You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
573 B

<%
var enableCover = false; // 封面是否开启
if(theme.cover && theme.cover.scheme) {
enableCover = true;
}
%>
<% if (enableCover) { %>
<div class="cover-wrapper">
<cover class='cover <%- page.layout %>' style="display: none;">
<%- partial('../_cover/index') %>
<div class="scroll-down" style="display: none;"><i class="fa fa-chevron-down scroll-down-effects"></i></div>
</cover>
<%- partial('header', null, {cache: false, path: path}) %>
</div>
<% } else { %>
<%- partial('header', null, {cache: false, path: path}) %>
<% } %>