-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (148 loc) · 4.52 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ruby Village @ Chaos Communication Camp 2011</title>
<meta http-equiv="Cache-control" content="no-cache">
<style type="text/css">
body {
padding: 50px 60px;
font-size: 16px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #222;
}
a {
color: #c90000;
text-decoration: underline;
}
a:hover {
color: #222;
}
h1 {
font-size: 30px;
font-weight: bold;
margin: 0 0 40px 0;
color: #c90000;
}
h1 .sub {
font-size: 20px;
color: #ccc;
}
h1 a {
color: #ccc;
text-decoration: underline;
}
h1 a:hover {
color: #222;
}
p {
margin: 0 0 30px 0;
line-height: 150%;
}
blockquote {
margin: 0 30px 30px 30px;
line-height: 150%;
font-style: italic;
}
.tents {
width: 600px;
height: 330px;
position: fixed;
bottom: 0;
right: 0;
background: #fff url(bg_body.png) bottom right no-repeat;
z-index: -100;
}
</style>
</head>
<body>
<h1>
Welcome to the Ruby Village
<span class="sub"><a href="http://events.ccc.de/camp/2011/">(@ Chaos Communication Camp 2011)</a></span>
</h1>
<p>
We're setting up a Ruby Village at this year's
<a href="http://events.ccc.de/camp/2011/">Chaos Communication Camp</a>
(Aug 10-14, in <a href="http://events.ccc.de/camp/2011/wiki/Location">Finowfurt</a>, near Berlin).
</p>
<blockquote>
The Chaos Communication Camp is an international, five-day open-air event for hackers and associated life-forms.
It provides a relaxed atmosphere for free exchange of technical, social, and political ideas. The Camp has
everything you need: power, internet, food and fun. Bring your tent and participate!
</blockquote>
<p>
The camp is happening only every 4 years, so if you're interested, just go
<a href="http://events.ccc.de/camp/2011/wiki/Tickets">buy a ticket</a> and
<a href="http://events.ccc.de/camp/2011/wiki/Ruby_Village">come join us</a>. It's worth it.
If you want to help out, check the <a href="https://github.com/railscamp/ruby-village/wiki">organization wiki page</a>.
We also <a href="https://github.com/railscamp/ruby-village">welcome pull requests</a> for this very website.
</p>
<p>
<strong>
Our infrastructure (especially the big tent with tables and chairs) costs some money. If you want to join
our village please consider a donation:
</strong>
</p>
<p>
<a href='http://www.pledgie.com/campaigns/15397'><img alt="Click here to lend your support to: Ruby Village @ Chaos Communication Camp and make a donation at www.pledgie.com !" src="http://www.pledgie.com/campaigns/15397.png?skin_name=chrome" border="0" /></a>
</p>
<p>
For future updates you can follow <a href="http://twitter.com/railscamp_de">@railscamp_de</a> on Twitter:
</p>
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 6000,
width: 500,
height: 300,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#222222',
links: '#c90000'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('railscamp_de').start();
</script>
<div class="tents"></div>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4e340bb9613f5d63ed000001');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3122386-13']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>