-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.html
71 lines (64 loc) · 2.29 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Perceive Development | Join</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.2.4/foundation.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/what-input/2.1.1/what-input.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.2.4/foundation.js"></script>
<script>
$(document).foundation();
</script>
<!-- Top Bar -->
<div class="top-bar">
<!-- Navigation -->
<div class="top-bar-left">
<ul class="menu">
<li class="menu-text" role="menuitem">Perceive Development</li>
<li role="menuitem"><a href="index.html">Home</a></li>
<li class="active" role="menuitem"><a href="#">Plugins</a></li>
<li role="menuitem"><a href="request.html">Requests</a></li>
<li role="menuitem"><a href="docs/index.html">Team Documents</a></li>
</ul>
</div>
<!-- Join Perceive -->
<div class="top-bar-right">
<ul class="menu">
<li role="menuitem"><a href="#">Join Perceive</a></li>
</ul>
</div>
</div>
<!-- Gap -->
<br>
<!-- Page Content -->
<div class="row" id="content">
<div class="medium-12 columns">
<h2>Our plugins</h2>
<h3>Plugin requests</h3>
<ul>
<li>
<a href="#">Clickable-TPA</a>
</li>
<li>
<a href="#">ChatMention</a>
</li>
<li>
<a href="#">ItemMaker</a>
</li>
<li>
<a href="#">RandomLore</a>
</li>
</ul>
// There are more, but we need to finish up other parts of the website first
</div>
</div>
</body>
</html>