-
Notifications
You must be signed in to change notification settings - Fork 3
/
help.html
45 lines (38 loc) · 1.41 KB
/
help.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>jQuery LCARS Framework</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="src/jquery.lcars.js"></script>
<script type="text/javascript">
$(function(){
$.lcars({
screen: 'panel',
title: 'LCARS Extended Help',
subTitle: 'Contact me on <a href="http://www.trekbbs.com">Trek BSS</a> as Garrett00',
colors: {
color1: 'tan',
color2: 'orange'
},
content: {
padding: '0 1em',
ele: '#content'
},
css: 'src/'
});
});
</script>
<noscript><h1><font color="red">Javascript is required to view this page!</font></h1></noscript>
</head>
<body>
<div id="content">
<p>If any of the documention on this site does not help to anwser your questions please feel free to contact me in one of the following ways.</p>
<ul>
<li><a href="mailto:[email protected]">E-Mail Me</a></li>
<li><a href="http://www.trekbbs.com">Trek BBS</a></li>
</ul>
<p>As stated on the main page this Plugin is Licensed under <a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License v3</a> this means you are free do to with this as you please.</p>
</div>
</body>
</html>