blog/themes/chameleon/layout/_partial/header.ejs

60 lines
2.6 KiB
Plaintext
Raw Normal View History

2018-09-10 09:21:59 +00:00
<header id="header" class="header">
<%/* Nav menu for desktop */%>
<nav class="main-nav">
2020-08-16 03:41:50 +00:00
<% if (!theme.menu) { %><a class="main-nav-link" href="<%- config.root %>">Home</a>
<% } else { %>
<% for (const i in theme.menu) { %>
2018-09-10 09:21:59 +00:00
<a class="main-nav-link" href="<%- url_for(theme.menu[i]) %>"><%= i %></a>
2020-08-16 03:41:50 +00:00
<% }} %>
<div class="search-container">
<form id="searchForm" method="post" action="https://duckduckgo.com/" target="_blank" rel="noopener external nofollow noreferrer">
<input type="text" name="q" class="search-box" placeholder="Search..." title="Powered by DuckDuckGo">
<input type="hidden" name="sites" value="<%- config.url.replace(/^http(s)?:\/\//, '') %>">
<input type="hidden" name="kd" value="-1">
<input type="hidden" name="kg" value="p">
<input type="hidden" name="kae" value="#000">
<a class="search-button no-underline" id="search-click">
<svg viewBox="0 0 512 512">
<title>Powered by DuckDuckGo</title>
<desc>Search icon</desc>
<use href="/svg/search.svg#search"/>
</svg>
</a>
</form>
</div>
2018-09-10 09:21:59 +00:00
</nav>
<%/* Nav menu for mobile */%>
<nav class="mobile-nav">
2021-02-26 09:13:21 +00:00
<a class="site-title" href="<%- config.root %>"><%= config.title %></a>
<ul class="mobile-nav-menu">
<label for="mobile-menu-toggle"><a class="no-underline" id="menu-button">&#9776;</a></label>
<input id="mobile-menu-toggle" type="checkbox"/>
<ul id="mobile-nav-link">
<div class="search-container">
<form id="searchFormMob" method="post" action="https://duckduckgo.com/" target="_blank" rel="noopener external nofollow noreferrer">
<input type="text" name="q" class="search-box" placeholder="Search..." title="Powered by DuckDuckGo">
<input type="hidden" name="sites" value="<%- config.url.replace(/^http(s)?:\/\//, '') %>">
<input type="hidden" name="kd" value="-1">
<input type="hidden" name="kg" value="p">
<input type="hidden" name="kae" value="#000">
<a class="search-button no-underline" id="search-click-mobile">
<svg viewBox="0 0 512 512">
<title>Powered by DuckDuckGo</title>
<desc>Search icon</desc>
<use href="/svg/search.svg#search"/>
</svg>
</a>
</form>
</div>
<i>Powered by DuckDuckGo</i>
2020-08-16 03:46:16 +00:00
<% if (!theme.menu) { %><a class="mobile-nav-link-a" href="<%- config.root %>">Home</a>
<% } else { %>
<% for (const i in theme.menu) { %>
<a class="mobile-nav-link-a" href="<%- url_for(theme.menu[i]) %>"><%= i %></a>
2020-08-16 03:46:16 +00:00
<% }} %>
</ul>
</ul>
</nav>
2018-09-10 09:21:59 +00:00
</header>