fix: search

This commit is contained in:
Cory Dransfeldt 2023-12-11 13:21:02 -08:00
parent 75ad7852a7
commit d24587df3d
No known key found for this signature in database
3 changed files with 3 additions and 1 deletions

View file

@ -27,7 +27,7 @@ permalink: /search.html
<div id="/search" class="/search"></div> <div id="/search" class="/search"></div>
<script <script
src="https://coryd.dev/_pagefind/pagefind-ui.js" src="https://coryd.dev/_pagefind/pagefind-ui.js"
onload="new PagefindUI({ element: '#/search', showImages: false, processTerm: (term) => { onload="new PagefindUI({ element: '#search', showImages: false, processTerm: (term) => {
try{ try{
plausible('/Search', {props: {method: 'Text', term}}); plausible('/Search', {props: {method: 'Text', term}});
} catch(e){}; } catch(e){};

View file

@ -1,6 +1,7 @@
--- ---
date: '2023-05-01' date: '2023-05-01'
title: 'A Safari-specific guide to making the modern web suck less' title: 'A Safari-specific guide to making the modern web suck less'
description: 'Take a second, turn off all of your browser extensions, go to a popular website that comes to mind and take a look at how bad the default experience is. Bonus points — pull up the dev tools, go to the network tab, filter for JavaScript and see how many analytics suites load.'
draft: false draft: false
tags: ['iOS', 'macOS', 'Apple', 'privacy', 'tech'] tags: ['iOS', 'macOS', 'Apple', 'privacy', 'tech']
--- ---

View file

@ -1,5 +1,6 @@
--- ---
title: 'Adding client-side rendered webmentions to my blog' title: 'Adding client-side rendered webmentions to my blog'
description: 'My blog is currently hosted on weblog.lol which allows for a simple and configurable weblog managed in git with posts formatted in markdown.'
date: '2023-02-09' date: '2023-02-09'
draft: false draft: false
tags: ['webmentions', 'development', 'JavaScript', 'API'] tags: ['webmentions', 'development', 'JavaScript', 'API']