-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
34 lines (26 loc) · 908 Bytes
/
search.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
layout: search
title: Zoekpagina
permalink /search.html
---
<div id="search-container">
{% include htmlhead.html %}
{% include navigation.html %}
<section>
<input type="text" id="search-input" placeholder="zoeken...">
<ul id="results-container"></ul>
</div>
<script src="/assets/js/simple-search.js" type="text/javascript"></script>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
searchResultTemplate: '<li><a href="{url}.html" tabindex="1">{title}</a></li>',
json: '/search.json'
})
</script>
<noscript><div style="text-weight: 50">Let op:</div>
<p>Uw browser ondersteund geen javascript, zoeken op de website is hierdoor niet mogelijk.
Als alternatief kunt u gaan naar de <a href="/recipes/">lijst van alle recepten</a>. </p>
</noscript>
</section>