aboutsummaryrefslogtreecommitdiff
path: root/docs/search.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/search.html')
-rw-r--r--docs/search.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/search.html b/docs/search.html
deleted file mode 100644
index 20cccc11f..000000000
--- a/docs/search.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-layout: search
-title: "Search"
----
-<h1 id="search">Search Results</h1>
-
-<form id="search-bar" action="/search.html" method="get">
- <input placeholder="Search" type="text" id="search-box" name="query">
-</form>
-
-<ul id="search-results"></ul>
-
-<script>
- window.store = {
- {% for post in site.posts %}
- "{{ post.url | slugify }}": {
- "title": "{{ post.title | xml_escape }}",
- "author": "{{ post.author | xml_escape }}",
- "content": {{ post.content | markdownify | strip_html | lstrip | jsonify }},
- "url": "{{ post.url | xml_escape }}"
- },
- {% endfor %}
- {% for page in site.html_pages %}
- "{{ page.url | slugify }}": {
- "title": "{{ page.title | xml_escape }}",
- "name": "{{ page.name | xml_escape }}",
- "content": {{ page.content | markdownify | strip_html | lstrip | jsonify }},
- "url": "{{ page.url | xml_escape }}"
- }
- {% unless forloop.last %},{% endunless %}
- {% endfor %}
- };
-</script>
-<script src="/js/elasticlunr.min.js"></script>
-<script src="/js/search.js"></script>