hexo-theme-keep/layout/page.ejs

90 lines
2.4 KiB
Plaintext
Raw Normal View History

2020-12-25 19:59:34 +08:00
<div class="page-container">
<% if (theme.style.first_screen.enable === true && is_home() && !page.prev) { %>
<%- partial('_partial/first-screen') %>
<% } %>
2020-11-13 14:43:22 +08:00
2020-12-25 19:59:34 +08:00
<header class="page-header">
<div class="header-progress"></div>
2020-12-25 19:59:34 +08:00
</header>
<main class="page-main">
<div class="page-main-content">
2020-04-01 12:09:06 +08:00
<div class="page-main-content-top">
<%- partial('_partial/header') %>
</div>
2020-04-01 12:09:06 +08:00
<div class="page-main-content-middle">
2020-04-01 12:09:06 +08:00
<main class="main-content normal-code-theme">
2020-04-01 12:09:06 +08:00
<% if (is_home()) { %>
<%- partial('home-content') %>
2020-04-01 12:09:06 +08:00
<% } else if (is_archive()) { %>
<%- partial('archive-content') %>
2020-09-02 17:49:53 +08:00
<% } else if (is_post()) { %>
<%- partial('article-content') %>
2020-09-03 12:28:24 +08:00
<% } else if (is_category()) { %>
<%- partial('category-content') %>
2020-05-13 14:47:03 +08:00
<% } else if (is_tag()) { %>
<%- partial('tag-content') %>
2020-09-03 12:28:24 +08:00
<% } else if (page.title === 'category' || page.title === 'categories') { %>
<%- partial('category-list') %>
2020-05-13 14:47:03 +08:00
<% } else if (page.title === 'tag' || page.title === 'tags') { %>
<%- partial('_partial/tagcloud') %>
<% } else { %>
<%- partial('_partial/empty-page') %>
2020-04-21 10:47:36 +08:00
<% } %>
</main>
2020-04-21 10:47:36 +08:00
</div>
<div class="page-main-content-bottom">
<%- partial('_partial/footer') %>
</div>
</div>
</main>
<% if (is_post()) { %>
<div class="sidebar-tools">
<%- partial('_partial/tools') %>
</div>
<% } %>
2020-04-05 00:42:07 +08:00
<div class="right-bottom-side-tools">
2020-12-22 18:19:41 +08:00
<%- partial('_partial/side-tools-container') %>
</div>
2020-12-25 19:59:34 +08:00
<% if (is_post() && theme.toc.enable === true) { %>
<!-- page aside -->
<aside class="page-aside">
<%- partial('_partial/toc') %>
2020-12-25 19:59:34 +08:00
</aside>
<% } %>
<!-- image viewer -->
2020-11-16 19:04:24 +08:00
<%- partial('_partial/image-viewer') %>
2020-12-25 19:59:34 +08:00
<% if (theme.music_player.enable === true) { %>
<!-- music player -->
<%- partial('_partial/music-player/aplayer') %>
<% } %>
2020-12-25 19:59:34 +08:00
</div>
2020-04-02 22:07:55 +08:00
<% if (theme.local_search.enable) { %>
<%- partial('_partial/local-search') %>
2020-09-02 17:49:53 +08:00
<% } %>
2020-12-22 18:19:41 +08:00
2020-12-25 19:59:34 +08:00