hexo-theme-keep/layout/_partial/empty-page.ejs

24 lines
704 B
Plaintext
Raw Normal View History

2020-04-30 00:34:31 +08:00
<div class="fade-in-down-animation">
<div class="empty-page-container">
<% if (
theme.menu.Links && theme.links && (page.title === 'link' || page.title === 'links')
) { %>
<%- partial('_partial/friends-link') %>
<% } %>
<div class="empty-page-content markdown-body">
2020-10-30 10:18:42 +08:00
<% if (page.content) { %>
<%- page.content %>
<% } else { %>
<h1><%- page.title %></h1>
<% } %>
2020-04-30 00:34:31 +08:00
</div>
<div class="empty-page-comments">
2020-10-29 15:42:58 +08:00
<% if (page.comment) { %>
<%- partial('_partial/comment/comment') %>
2020-04-30 00:34:31 +08:00
<% } %>
</div>
</div>
</div>