put search page online

This commit is contained in:
Christoph Cullmann 2019-04-11 23:02:11 +02:00
parent cfaa9504a1
commit 8467cd79e4
3 changed files with 29 additions and 10 deletions

View file

@ -130,7 +130,12 @@ pygmentscodefencesguesssyntax = true
url = "links/"
weight = 50
[[menu.main]]
name = "Search"
url = "search/"
weight = 60
[[menu.main]]
name = "Impressum"
url = "impressum/"
weight = 60
weight = 70

View file

@ -1,5 +1,5 @@
---
title: "Search Results"
title: "Search"
sitemap:
priority : 0.1
layout: "search"

View file

@ -1,17 +1,26 @@
{{ define "content" }}
<!-- needed script magic -->
<script src="/jquery-3.4.0.js"></script>
<script src="/fuse.js"></script>
<script src="/jquery.mark.js"></script>
<script src="/search.js"></script>
<div class="my-auto" >
<form action="{{ "search" | absURL }}">
<!-- search content -->
<section class="container page">
<header>
<h1>Search</h1>
</header>
<article>
<form action="{{ "search" | absURL }}">
<input id="search-query" name="s"/>
</form>
<div id="search-results">
<h3>Matching pages</h3>
</div>
</div>
</form>
<div id="search-results">
</div>
<!-- this template is sucked in by search.js and appended to the search-results div above. So editing here will adjust style -->
<script id="search-result-template" type="text/x-js-template">
@ -22,4 +31,9 @@
${ isset categories }<p>Categories: ${categories}</p>${ end }
</div>
</script>
</article>
</section>
{{ end }}