Remove search for now, since it screws with page load times.

This commit is contained in:
2020-12-30 15:50:00 -08:00
parent 7ee7feadf3
commit 17e0fbc6fb
2 changed files with 0 additions and 11 deletions

View File

@@ -1,13 +1,6 @@
{{ define "main" }}
{{ .Content }}
<div class="stork-wrapper">
<div class="stork-input-wrapper">
<input class="stork-input" data-stork="blog" placeholder="Search (requires JavaScript)"/>
</div>
<div class="stork-output" data-stork="blog-output"></div>
</div>
Recent posts:
<ul class="post-list">
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
@@ -15,6 +8,4 @@ Recent posts:
{{ end }}
</ul>
<script src="https://files.stork-search.net/stork.js"></script>
<script>stork.register("blog", "/index.st", {"showProgress" : false});</script>
{{ end }}