I have a static HTML Blog (built with zola)
There is zero php or javascript on or required to use the blog, I want to keep it that way.
I was thinking that there must be a way to run a self hosted search engine for my static blog without using javascript or php.
I imagine the only way would be using a form post?
<form action="http://www.mysearchdomain.com/search?" method="post">
<input type="text" name="search">
<input type="submit" value="Search">
</form>
Is there any way to make use of manticore search so that users browsing my blog can make use of a search box even if they have javascript disabled (noscript)?
I really appreciate any responses I get, most of my searches turn up empty when looking for clues…