23 lines
No EOL
988 B
HTML
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 %} |