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-02-17 21:17:54 -08:00

22 lines
No EOL
817 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/pagefind-search.js"></script>
{% capture css %}
{% render "../assets/styles/widgets/forms.css" %}
{% render "../assets/styles/widgets/pagefind.css" %}
{% endcapture %}
<style>{{ css }}</style>
<pagefind-search _show_images="false">
<form action="https://duckduckgo.com/" method="get" style="min-height: 3.2em;">
<label>
<input 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/popular-posts.liquid", posts: collections.posts, analytics: analytics %}