mirror of
https://github.com/tangkunyin/hexo-theme-jsimple.git
synced 2026-01-25 14:56:28 +00:00
17 lines
849 B
Plaintext
17 lines
849 B
Plaintext
<div id="nav">
|
|
<nav class="nav-menu">
|
|
<a class="site-name current" href="/" title="<%= theme.short_name %>"><%= theme.short_name %></a>
|
|
<a class="site-index current" href="/"><i class="fa fa-home"></i><span><%= __('home') %></span></a>
|
|
<a href="/archives" title="<%= __('archives') %>"><i class="fa fa-archives"></i><span><%= __('archives') %></span></a>
|
|
<a href="/tags" title="<%= __('tags') %>"><i class="fa fa-tags"></i><span><%= __('tags') %></span></a>
|
|
<!-- custom single page of menus -->
|
|
<% for (let index in theme.left_nav_menus){ %>
|
|
<% let obj = theme.left_nav_menus[index]; %>
|
|
<a href="/<%= obj.uri %>" title="<%= obj.title %>">
|
|
<i class="fa <%= obj.faName %>"></i>
|
|
<span><%= obj.title %></span>
|
|
</a>
|
|
<% } %>
|
|
</nav>
|
|
</div>
|