redzuurdesem/themes/desem-swift-theme/layouts/shortcodes/searchresults.html

27 lines
693 B
HTML
Raw Normal View History

2020-05-13 12:51:02 +02:00
<form method="get" action="">
<input id="zoekentxt" placeholder="zuurdesembrood" name="q" type="text" style="width: 50%" />
<button type="submit" class="button">Zoeken</button>
<a href="/zoeken">Leegmaken</a>
</form>
<div id="resultaten">
<hr/>
<h1>
Zoekresultaten
<span class="pages"></span> &raquo;
</h1>
<div id="searchapp"></div>
</div>
<script src="/js/lunr.min.js"></script>
2020-05-13 12:51:02 +02:00
{{ $p := slice }}
2020-05-13 14:23:59 +02:00
{{ range (where .Site.RegularPages "Section" "!=" "") }}
2020-05-13 12:51:02 +02:00
{{ $post := dict "link" .RelPermalink "title" .Title "content" (substr .Plain 0 200) -}}
{{ $p = $p | append $post -}}
{{ end }}
<script>
window.searchposts = JSON.parse(
{{ $p | jsonify }}
);
</script>