-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugins.html
89 lines (77 loc) · 4.4 KB
/
plugins.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./micro_files/icon.png">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Micro - Plugins</title>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="micro_files/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="micro_files/micro.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66418971-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body onload="fetchData()">
<div class="container">
<div class="header clearfix">
<div class="navbar-header pull-left">
<a href="index.html" class="micro-logo">Micro</a>
</div>
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav pull-right">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li class="active"><a href="plugins.html">plugins</a></li>
<li><a href="https://github.com/zyedidia/micro">development</a></li>
</ul>
</div>
</div>
<div class="row about">
<div class="col-lg-12">
<div class="heading">
<h2>Plugins</h2>
</div>
<div>
<input type="radio" name="searchby" value="Name"
checked="true">Name</option>
<input type="radio" name="searchby" value="Description">Description</option>
<input type="radio" name="searchby" value="Tags">Tags</option>
<br/><br/>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search plugins..." onchange="search(false)" id="keyword">
<span class="input-group-btn">
<button id="searchbutton" class="btn btn-success" type="button" onclick="search(false)">Search</button>
</span>
</div><!-- /input-group -->
</div>
<hr />
<div class="panel-group" id="results" role="tablist" aria-multiselectable="true">
</div>
</div>
</div>
<footer class="footer">
<p>View the source code for this website on <a href="https://github.com/micro-editor/micro-editor.github.io">GitHub</a></p>
</footer>
</div> <!-- /container -->
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="micro_files/ie10-viewport-bug-workaround.js"></script>
<script src="micro_files/fetch.js"></script>
<script src="micro_files/plugin-search.js"></script>
</body>
</html>