36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
---
|
|
title: Search
|
|
description: "Search through and find the posts on my site."
|
|
layout: default
|
|
permalink: /search.html
|
|
---
|
|
|
|
<link href="https://coryd.dev/pagefind/pagefind-ui.css" rel="stylesheet" />
|
|
<style>
|
|
:root {
|
|
--pagefind-ui-font: 'Seravek', 'Gill Sans Nova', 'Ubuntu', 'Calibri', 'DejaVu Sans', 'source-sans-pro', 'sans-serif';
|
|
--pagefind-ui-primary: #374151;
|
|
--pagefind-ui-text: #374151;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--pagefind-ui-primary: #e5e7eb;
|
|
--pagefind-ui-text: #e5e7eb;
|
|
--pagefind-ui-background: #152028;
|
|
--pagefind-ui-border: #152028;
|
|
--pagefind-ui-tag: #152028;
|
|
}
|
|
}
|
|
</style>
|
|
<div id="search" class="search"></div>
|
|
<script
|
|
src="https://coryd.dev/_pagefind/pagefind-ui.js"
|
|
onload="new PagefindUI({ element: '#search', showImages: false, processTerm: (term) => {
|
|
try{
|
|
plausible('/Search', {props: {method: 'Text', term}});
|
|
} catch(e){};
|
|
return term;
|
|
}
|
|
});"
|
|
></script>
|
|
{% render "partials/popular-posts.liquid", posts: collections.posts, analytics: analytics %}
|