-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
55 lines (55 loc) · 1.53 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Orion Plugins and Tools</title>
<link rel="canonical" href="https://orion-plugins.github.io" />
<link rel="stylesheet" href="web/plugin-list.css" />
<script>
// To avoid mixed-content problems, client-side redirect to https
/*eslint-env browser*/
var loc = window.location;
if (loc.protocol === "http:" && loc.host === "orion-plugins.github.io") {
window.location.protocol = "https";
}
</script>
<script src="web/require/require.js"></script>
<script>
/*eslint-env amd*/
require({
baseUrl: "web",
paths: {
domReady: "require/domReady",
text: "require/text"
}
});
require(["plugin-list"]);
</script>
</head>
<body class="body">
<div class="staticBanner">
<h1 class="pageHeading">Orion Plugins and Tools</h1>
</div>
<div class="content">
<div class="section">
<h3 class="sectionHeading">Plugins</h3>
<div class="sectionContent">
<table id="pluginTable" class="pluginTable"></table>
</div>
</div>
<div class="section">
<h3 class="sectionHeading">Tools</h3>
<ul>
<li><a href="tools/grammar">TextMate-to-Orion grammar converter</a></li>
</ul>
</div>
<div class="section">
<h3 class="sectionHeading">See also</h3>
<ul>
<li><a href="http://wiki.eclipse.org/Orion">Orion wiki</a></li>
<li><a href="http://wiki.eclipse.org/Orion/How_Tos/Installing_A_Plugin">Installing a Plugin</a></li>
</ul>
</div>
</div>
</body>
</html>