forked from theobald-software/kb.theobald-software.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
70 lines (64 loc) · 1.92 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
layout: search
title: Search
description: The search page for the Theobald Software Knowledgebase
permalink: /search.html
search-ignore: true
---
<!-- PAGE -->
<header class="header-section header-section-search">
<div class="intro-header intro-header-search no-img">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="search-heading">
<h1>{{ site.content.search-title }}</h1>
</div>
</div>
</div>
</div>
</div>
<div id="search-box">
<!-- SearchBox -->
</div>
</header>
<div class="container" role="main">
<div class="row">
<div class="col-md-12">
<div id="results" class="ais-menu-select--header ais-header">
{{ site.content.search-results }}
</div>
<div id="hits">
<!-- Hits -->
</div>
<div id="pagination">
<!-- Pagination -->
</div>
</div>
</div>
</div>
<!-- /PAGE -->
<!-- TEMPLATES -->
{% raw %}
<script type="text/html" id="hit-template">
<a href="{{ url }}?fromSearch=true">
<div class="hit">
<div class="hit-content">
<h3 class="hit-page-title">{{ title }}</h3>
<p class="hit-category">{{ collection }}</p>
<p class="hit-description">{{{ _highlightResult.content.value }}}</p>
</div>
</div>
</a>
<div class="ais-menu-select--header ais-header"></div>
</script>
<script type="text/html" id="no-results-template">
<div id="no-results-message">
<p>{% endraw %}{{ site.content.search-no-results }}{% raw %} <em>"{{ query }}"</em>.</p>
</div>
</script>
{% endraw %}
<!-- /TEMPLATES -->
<!-- LANGUAGE -->
<div id="search-box-text" class="invisible">{{ site.content.search-box-text }}</div>
<!-- /LANGUAGE -->