Files
bqkc/_includes/nav-search-lunr.html
Nasir Anthony Montalvo 526096840e Initial commit
2025-11-13 14:48:58 -06:00

15 lines
1.1 KiB
HTML

<script>
function site_search() {
var query = document.getElementById("site-search").value;
window.open("{{ '/search/index.html' | relative_url }}?q=" + encodeURIComponent(query), "_self" );
}
</script>
<form class="form-inline my-2 my-lg-0" role="search" id="search" onsubmit="site_search(); return false;">
<div class="input-group">
<input id="site-search" class="form-control " type="text" placeholder="Search" aria-label="Search box">
<button class="btn btn-light" type="submit">
<span id="search-icon"><svg viewBox="0 0 1024 974" height="16px" width="20px"><path d="M960 832L710.875 582.875C746.438 524.812 768 457.156 768 384 768 171.96900000000005 596 0 384 0 171.969 0 0 171.96900000000005 0 384c0 212 171.969 384 384 384 73.156 0 140.812-21.562 198.875-57L832 960c17.5 17.5 46.5 17.375 64 0l64-64C977.5 878.5 977.5 849.5 960 832zM384 640c-141.375 0-256-114.625-256-256s114.625-256 256-256 256 114.625 256 256S525.375 640 384 640z"/></svg></span>
<span class="visually-hidden">Search</span>
</button>
</div>
</form>