You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
816 B
21 lines
816 B
3 years ago
|
<header class="navbar-fixed">
|
||
|
<nav id="headNav" class="bg-color nav-transparent">
|
||
|
<div id="navContainer" class="nav-wrapper container">
|
||
|
<div class="brand-logo">
|
||
|
<a href="<%- url_for() %>" class="waves-effect waves-light">
|
||
|
<% if (theme.logo !== undefined && theme.logo.length > 0) { %>
|
||
|
<img src="<%- theme.jsDelivr.url %><%- url_for(theme.logo) %>" class="logo-img" alt="LOGO">
|
||
|
<% } %>
|
||
|
<span class="logo-span"><%= config.title %></span>
|
||
|
</a>
|
||
|
</div>
|
||
|
<%- partial('_partial/navigation') %>
|
||
|
</div>
|
||
|
|
||
|
<% if (theme.githubLink && theme.githubLink.enable) { %>
|
||
|
<%- partial('_partial/github-link') %>
|
||
|
<% } %>
|
||
|
</nav>
|
||
|
|
||
|
</header>
|