hexo-theme-stellar/layout/_partial/main/navbar/list_post.ejs

35 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-02-20 13:09:41 +08:00
<div class='nav-wrap'>
2021-02-23 21:09:49 +08:00
<nav class='sub post cap'>
2021-02-20 13:09:41 +08:00
<% if (is_home()) { %>
<a class='active' href='/'><%- __('btn.recent_publish') %></a>
<% } else { %>
<a href='/'><%- __('btn.recent_publish') %></a>
<% } %>
2021-02-22 14:12:34 +08:00
<% if (site.categories && site.categories.length > 0) { %>
<% if (page.category) { %>
<a class='active' href='<%- url_for(config.category_dir) %>'><%- __('btn.category') + __('symbol.colon') + page.category %></a>
<% } else if (page.layout == 'categories') { %>
<a class='active' href='<%- url_for(config.category_dir) %>'><%- __('btn.categories') %></a>
<% } else { %>
<a href='<%- url_for(config.category_dir) %>'><%- __('btn.categories') %></a>
<% } %>
2021-02-20 13:09:41 +08:00
<% } %>
2021-02-22 14:12:34 +08:00
<% if (site.tags && site.tags.length > 0) { %>
<% if (page.tag) { %>
<a class='active' href='<%- url_for(config.tag_dir) %>'><%- __('btn.tag') + __('symbol.colon') + page.tag %></a>
<% } else if (page.layout == 'tags') { %>
<a class='active' href='<%- url_for(config.tag_dir) %>'><%- __('btn.tags') %></a>
<% } else { %>
<a href='<%- url_for(config.tag_dir) %>'><%- __('btn.tags') %></a>
<% } %>
2021-02-20 13:09:41 +08:00
<% } %>
2021-02-22 14:12:34 +08:00
<% if (site.posts && site.posts.length > 0) { %>
<% if (is_archive()) { %>
<a class='active' href='<%- url_for(config.archive_dir) %>'><%- __('btn.archives') %></a>
<% } else { %>
<a href='<%- url_for(config.archive_dir) %>'><%- __('btn.archives') %></a>
<% } %>
2021-02-20 13:09:41 +08:00
<% } %>
2021-02-22 14:12:34 +08:00
</nav>
2021-02-20 13:09:41 +08:00
</div>