hexo-theme-keep/layout/right-side.ejs

27 lines
698 B
Plaintext
Raw Normal View History

<div class="right-side-container">
2020-03-20 17:43:45 +08:00
<div class="nav-container animated">
<%- partial('common/nav') %>
</div>
2020-03-20 17:43:45 +08:00
<div class="article-post-container animated">
<% if (is_home()) { %>
<%- partial('home-post') %>
<% } else if (is_archive()) { %>
<%- partial('archive-post') %>
<% } else if (is_post()) { %>
<%- partial('article-post') %>
<% } else if (is_category()) { %>
<%- partial('category-post') %>
<% } else if (is_tag()) { %>
<%- partial('tag-post') %>
<% } else if (page.title == 'about') { %>
<%- partial('about') %>
<% } %>
</div>
</div>