forked from gethugothemes/parsa-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
37 lines (34 loc) · 986 Bytes
/
list.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
{{ define "main" }}
<!-- page-title -->
<section class="section bg-secondary">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h4>{{.Title}}</h4>
</div>
</div>
</div>
</section>
<!-- /page-title -->
<!-- search result -->
<section class="section">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<div id="search-results"></div>
<script id="search-result-template" type="text/x-js-template">
<ul class="search-result list-unstyled" id="summary-${key}">
<li class="border-bottom mb-4 pb-3">
<h4><a class="text-dark" href="${link}">${title}</a></h4>
<p>${snippet}</p>
${ isset tags }<p>Tags: ${tags}</p>${ end }
${ isset categories }<p>Categories: ${categories}</p>${ end }
</li>
</ul>
</script>
</div>
</div>
</div>
</section>
<!-- /search result -->
{{ end }}