-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 3.39 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 3.39 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>okcDroid - Oklahoma City's Android Developer Group</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css" />
<link rel="stylesheet" href="/css/custom.css" />
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.js"></script>
</head>
<body>
<div data-role="page" id="home" data-theme="f">
<div data-role="header" data-theme="f"><h1>okcDroid</h1></div>
<div data-role="content" id="one">
<h2>A Little About Our Group</h2>
<p>
We are a group of enthusiasts who enjoy hacking on some code for the Android™ platform.
Our group is very much open to everyone, with varying levels of experience.
</p>
<p>
We openly invite any developer in Oklahoma who is interested in Android development, even
if you have never written any Java code, to come on out and meet us.
</p>
<p>
Growing our community is what matters. You can <a href="#contact">contact</a>
<a href="http://groups.google.com/group/okcdroid">us</a>
<a href="http://www.twitter.com/okcdroid">in</a>
<a href="https://github.com/okcdroid">many</a> ways.
</p>
<p>
According to the Android™'s <a href="http://www.android.com/branding.html">branding rules</a>, we can't use the Android™ font ... oh well, we will stop once Google comes after us.
</p>
<p><a href="#contact" data-role="button">Contact Us</a></p>
<p><a href="#meeting_times"data-role="button" data-rel="dialog" data-transition="pop">Meeting Times</a></p>
</div>
<div data-role="footer" data-theme="c"><h4>© 2011 okcDroid | Android is a trademark of Google Inc.</h4></div>
</div>
<div data-role="page" id="contact" data-theme="f">
<div data-role="header" data-theme="f"><h1>okcDroid</h1></div>
<div data-role="content">
<h2>How to get in touch with us</h2>
<p>
Until we get a contact submission form working, the best way to reach to reach us is by joining our <a href="http://groups.google.com/group/okcdroid">group</a>
or through <a href="http://twitter.com/#!/okcdroid" data-ajax="false">Twitter</a>.
</p>
<p>
Note: If your Twitter account is private and we are not following you, then okcDroid won't see anything
from you. Not even "<em>@okcdroid is crazy good</em>" will work, hence the point of private.
</p>
<p><a href="#home" data-direction="reverse" data-role="button">Home</a></p>
</div>
<div data-role="footer" data-theme="c"><h4>© 2011 okcDroid | Android is a trademark of Google Inc.</h4></div>
</div>
<div data-role="page" id="meeting_times" data-theme="a">
<div data-role="header" data-theme="f"><h1>okcDroid</h1></div>
<div data-role="content" data-theme="d">
<h2>okcDroid Meeting Time & Place</h2>
<p>
We meet every third Thursday of the month around 11:30am. Currently we are meeting at theDiv.
For directions see theDiv's <a href="http://thediv.org/contact-us/"> contact page</a>.
</p>
<p><a href="#home" data-rel="back" data-role="button" data-inline="true" data-icon="back">Home</a></p>
</div>
<div data-role="footer" data-theme="c"><h4>© 2011 okcDroid | Android is a trademark of Google Inc.</h4></div>
</div>
</body>
</html>