-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 2.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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 | Home</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 class="active" role="menuitem"><a href="#">Home</a></li>
<li role="menuitem"><a href="plugins.html">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.html">Join Perceive</a></li>
</ul>
</div>
</div>
<!-- Gap -->
<br>
<!-- Page Content -->
<div class="row" id="content">
<div class="medium-12 columns">
<!---------------->
<h2>About us</h2>
<p>
<a href="https://www.github.com/PerceiveDev/">View our projects on GitHub.</a>
</p>
<!---------------->
<h3>Request a plugin</h3>
<p>
Click <a href="request.html">here</a> to request a plugin. There are some requirements/guidelines, so make sure you read them first.
</p>
<!---------------->
<h3>Join us</h3>
<p>
Click <a href="join.html">here</a> to read about the application process to Perceive. There are some rules and requirements so <strong>make sure to read them.</strong>
</p>
<!---------------->
<h3>Team Documents</h3>
<p>
All the documents for team members (code guidelines, publishing guidelines, member expectations, etc.) can be found <a href="docs/index.html">here</a>.
</p>
<p>
If you're a current member, or you're just now considering joining and you haven't read them yet, take a few minutes to read through them. They aren't very long, but they're extremely important.
</p>
</div>
</div>
</body>
</html>