This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/pages/search.html
2024-03-13 16:18:47 -07:00

23 lines
No EOL
988 B
HTML

---
title: Search
description: "Search through and find the posts on my site."
layout: default
permalink: /search.html
image: /assets/img/ogi/search.jpg
---
<script type="module" src="/assets/scripts/components/pagefind-search.js"></script>
{% capture css %}
{% render "../assets/styles/components/forms.css" %}
{% render "../assets/styles/components/pagefind.css" %}
{% endcapture %}
<style>{{ css }}</style>
<pagefind-search _show_images="false" _show_empty_filters="false">
<form action="https://duckduckgo.com/" method="get" style="min-height: 3.2em;">
<label>
<input class="pagefind__placeholder" placeholder="Search" type="search" name="q" autocomplete="off" autofocus>
</label>
<input type="hidden" placeholder="Search" name="sites" value="coryd.dev">
</form>
</pagefind-search>
{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %}
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %}