22 lines
No EOL
817 B
HTML
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 %} |