-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (115 loc) · 5.31 KB
/
index.html
File metadata and controls
118 lines (115 loc) · 5.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Yet Another Project</title>
<meta name="description" content="">
<meta name="author" content="Yet Another Project group">
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- styles -->
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/styles/default.css">
<!-- scripts -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-modal.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-dropdown.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-scrollspy.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-tabs.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-twipsy.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-popover.js"></script>
<script type="text/javascript" src="/scripts/default.js"></script>
<script>
$(document).ready(function () {
$('.topbar').dropdown()
.scrollSpy()
$('.tabs').tabs()
$("a[rel=twipsy]").twipsy({
live: true
})
$("a[rel=popover]").popover({
}).click(function(e) {
e.preventDefault()
})
});
</script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="/">YAP</a>
<ul class="nav">
<li><a href="/about/">About</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/education.html">Education</a></li>
</ul>
<ul class="nav secondary-nav">
<li><a href="/contact.html">Contact</a></li>
<li class="menu"><a href="https://github.com/yet-another-project">GitHub Home</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="page-header">
<h1>YAP <small>Yet Another Project</small></h1>
</div>
<div class="row">
<div class="span10">
<h2>What is this about?</h2>
<p>Yet Another Project is a group of individuals focused on
<ul>
<li>creating open-source software</li>
<li>training young people through free courses, so they
become computer programmers one day</li>
<li>exchanging experience and knowledge for the greater good</li>
</ul>
</p>
<p>
If you want to take part, you may <a href="/contact">just join</a> us on IRC or
write to us on the mailing list, and we'll talk.
The easiest way is to contribute to one of the <a href="/projects">projects</a>
under the umbrella of YAP. You GET the credits!
</p>
<p>
Another way is to propose a new project (either existent - your own),
or a new idea. Once we agree we can do it, we'll get to work. If you
would like your project to be maintained by us, you have to become
a member and be active, and we have to work together to learn
about each other's projects, so we can maintain them together.
</p>
This means that we also need some time to get accustomed with your
project's codebase, while you learn more about ours.
</p>
<p>What we cannot do, is to create your project for free. We
have to take the decisions together and you have to be a part of it.</p>
<p>
Through the <a href="/education">educational programmes</a> we offer, we may learn more
together, so we become better, faster, smarter :-)
</p>
<p>If you're not a programmer, but you want to become one, then that's GREAT!
Take part to our educational programmes, and you'll grow as part of our
community from the ground up, until you become a full member.</p>
</div>
<div class="span4">
<h3>At a Glance</h3>
<p>YAP is a knowledge-centric exchange group
working together on open-source projects.<p>
<p>YAP is about sharing experience, knowledge,
and spare time for maintaining agreed projects.</p>
<p>YAP is about growth, both personal and
professional. YAP offers support for young
programmers in form of educational programmes.</p>
</div>
</div>
</div>
<footer>
<p>© Yet Another Project 2012</p>
</footer>
</div>
</body>
</html>