-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
49 lines (44 loc) · 1.34 KB
/
credits.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Credits - Fuel Documentation</title>
<link href="assets/css/main.css" media="screen" rel="stylesheet" />
<script type="text/javascript" src="assets/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="assets/js/nav.js"></script>
<script type="text/javascript">
$(function() {
show_nav('basic');
});
</script>
</head>
<body>
<header>
<h1>Fuel Documentation</h1>
</header>
<div id="main-nav"></div>
<section id="content">
<h2>Credits</h2>
<h5>Primary Developers</h5>
<p>These are the developers that make commits on a near-daily basis, and make all final decisions about the framework.</p>
<ul>
<li>Dan Horrigan - Lead Developer</li>
<li>Jelmer Schreuder - Senior Developer</li>
<li>Phil Sturgeon - Developer</li>
<li>Harro Verton (aka WanWizard) - Developer</li>
</ul>
<h5>Contributors</h5>
<p>These folks have contributed libraries and in various other ways to the framework.</p>
<ul>
<li>Coming Soon.</li>
<li>For now, look at our contributors list at <a href="https://github.com/fuel/core/contributors">github</a>.</li>
</ul>
</section>
<section id="footer">
<p>
<a href="http://fuelphp.com">Fuel</a> is released under the MIT license.<br />
© 2010 - 2011 Fuel Development Team
</p>
</section>
</body>
</html>