-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.crotmp
69 lines (68 loc) · 2.2 KB
/
search.crotmp
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SparrowHub - Sparrow Plugins Repository</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<section class="section">
<div class="container">
<!-- Main container -->
<nav class="level">
<!-- Left side -->
<div class="level-left">
<div class="level-item">
<p class="subtitle is-5">
<strong><.plg-cnt></strong> plugins
</p>
</div>
<form action="/hub/search" method="GET">
<div class="level-item">
<div class="field has-addons">
<p class="control">
<input class="input" type="text" name="q" placeholder="Find a plugin" value="<.q>">
</p>
<p class="control">
<button class="button">
Search
</button>
</p>
</div>
</div>
</form>
</div>
<!-- Right side -->
<div class="level-right">
<p class="level-item"><a href="/hub/">Home</a></p>
<p class="level-item"><strong>Search</strong></p>
<p class="level-item"><a href="https://github.com/melezhik/Sparrow6">GitHub</a></p>
<p class="level-item"><a href="https://sparrowdo.wordpress.com/">Blog</a></p>
</div>
</nav>
<table class="table">
<thead>
<tr>
<th><abbr title="Name">NN</abbr></th>
<th>Name</th>
<th><abbr title="Version">Version</abbr></th>
<th>Description</th>
</tr>
</thead>
<tbody>
<@results>
<tr>
<th><.num></th>
<td><a href="/hub/plugin/<.name>/<.version>" title=".name"><.name></td>
<td><.version></td>
<td><.description></td>
</tr>
</@>
</tbody>
</table>
</div>
</section>
</body>
</html>