-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
35 lines (31 loc) · 1.14 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
---
layout: page
title: Suche
description:
search_omit: true
---
<!-- Search form -->
<form method="get" action="/search" data-search-form>
<input class="search-box" type="search" name="q" id="q" placeholder="Enter a search term" data-search-input />
<input class="search-button" type="submit" value="Search" />
</form>
<!-- Search results placeholder -->
<p data-search-found class="search-result-counter">
<span data-search-found-count></span> Result(s) found for “<span data-search-found-term></span>”.
</p>
<div data-search-results></div>
<!-- Search result template -->
<script type="text/x-template" id="search-result">
<div class="post-preview">
<a href="##Url##">
<h2 class="post-title">##Title##</h2>
<h3 class="post-subtitle">##Subtitle##</h3>
</a>
<p class="post-meta">Posted by ##Author## on ##Date##</p>
<hr>
</div>
</script>
<!-- jQuery - Must appear after template -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- Search script - Must appear after template -->
<script src="/js/search.js"></script>