hexo-theme-quiet/layout/_partial/header.ejs

34 lines
929 B
Plaintext

<%- js('js/header.js') %>
<%- css('css/header.css') %>
<div class="header">
<div class="header-top">
<div class="h-left">
<a href="<%= theme.menus.home %>">
<img src="<%- theme.logo %>" alt="">
</a>
</div>
<div class="h-right">
<ul>
<% for(const menu in theme.menus) { %>
<% if( name == menu ) {%>
<li class="select">
<a href="<%= theme.menus[menu] %>"><%= theme.menus_title[menu] %></a>
<span class="dot"></span>
</li>
<% }else{ %>
<li>
<a href="<%= theme.menus[menu] %>"><%= theme.menus_title[menu] %></a>
<span class="dot"></span>
</li>
<% } %>
<% } %>
</ul>
</div>
<div class="h-right-close">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<path fill="none" d="M0 0h24v24H0z" />
<path d="M3 4h18v2H3V4zm0 7h18v2H3v-2zm0 7h18v2H3v-2z" fill="rgba(68,68,68,1)" />
</svg>
</div>
</div>
</div>