diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-24 18:36:15 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-24 18:36:15 +0100 |
commit | 1892bc38d8416a6ec79f37c41a9ffb38b6f44938 (patch) | |
tree | ffd211a1718ff2b793179c6fb115faf190e3cdfb /search.html | |
parent | be6c61295058e32604e4d18da3689d2675e5bf19 (diff) |
minimalize layout
Diffstat (limited to 'search.html')
-rw-r--r-- | search.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/search.html b/search.html deleted file mode 100644 index 026a20c..0000000 --- a/search.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Search for posts -layout: default -id: search -toc: false ---- - -<form class="searchBar" method="get" action="{{ site.nojs-search }}"> - <input type="text" class="input" id="searchInput" name="q" placeholder="Search for posts..." spellcheck="false" autocomplete="off"> - <input type="hidden" name="q" value="site:{{ site.domain }}"> - <button class="button"> - <div class="icon">{% include icon/search-round.svg %}</div> - </button> -</form> - -<div class="searchResults"> - {% for post in site.items %} - <div class="post"> - <a href="{{ post.url }}" class="nolink block"> - <b class="title">{{ post.title }}</b> - <p class="subtitle">{{ post.subtitle }}</p> - <p class="authordate">???</p> - <input class="keywords" type="hidden" value=""/> - </a> - {% include tags.html tags=post.tags %} - </div> - {% endfor %} -</div> - - |