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.

34 lines
880 B

5 years ago
<%
var showCover = false;
if (theme.cover) {
// 如果页面的Front-matter声明了cover,就取页面的值
if (page.cover != undefined) {
showCover = page.cover;
} else {
// 否则,如果是首页,只有首页的第一页显示
if (is_home()) {
if (page.prev) {
showCover = false;
} else {
showCover = true;
}
} else {
showCover = true;
}
}
}
%>
<% if (showCover == true) { %>
<div class="cover-wrapper">
5 years ago
<div class='cover <%- page.layout %> <%- is_home() ? theme.cover.height : "half" %>'>
5 years ago
<% if (theme.cover.scheme == 'search') { %>
<%- partial('../_cover/search') %>
<% } %>
</div>
<%- partial('header', null, {cache: !config.relative_link, path: path}) %>
</div>
<% } else { %>
<%- partial('header', null, {cache: !config.relative_link, path: path}) %>
<% } %>