mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 05:36:07 +01:00
15 lines
514 B
HTML
15 lines
514 B
HTML
<link href="/search/pagefind-ui.css" rel="stylesheet" />
|
|
<script src="/search/pagefind-ui.js" type="text/javascript"></script>
|
|
<div id="search"></div>
|
|
<script>
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
const search = new PagefindUI({
|
|
element: "#search",
|
|
showEmptyFilters: false,
|
|
});
|
|
const params = new URLSearchParams(window.location.search);
|
|
if (params.has('q')) {
|
|
search.triggerSearch(params.get('q'));
|
|
}
|
|
});
|
|
</script>
|