-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.rfd.html.erb
116 lines (109 loc) · 4.91 KB
/
.rfd.html.erb
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
<!DOCTYPE html>
<html lang="<%= t('site_lang') %>">
<head>
<meta charset="UTF-8" />
<link href='http://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<link href="../css/styles.css" rel="stylesheet" type="text/css" rel="stylesheet" media="all">
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<title>RubyConf Argentina 2013</title>
<link rel="icon" type="image/png" href="../favicon.png" />
</head>
<body>
<nav>
<ul>
<li><a href='index.html#home'><%= t('nav_home') %></a></li>
<li><a href='index.html#speakers'><%= t('nav_speakers') %></a></li>
<li><a href='program.html'><%= t('nav_program') %></a></li>
<li><a href='rfd.html'><%= t('nav_rfd') %></a></li>
<li><a href='schedule.html'><%= t('nav_schedule') %></a></li>
<li><a href='index.html#venue'><%= t('nav_venue') %></a></li>
<li><a href='index.html#sponsors'><%= t('nav_sponsors') %></a></li>
<li class="pull-right"><a href='<%= t('nav_lang_selector_url') %>'><%= t('nav_lang_selector_message') %></a></li>
</ul>
</nav>
<header id="home">
<div class="container">
<img src="../img/rubyconfar-2013.png">
<p>Buenos Aires, <%= t('date') %></p>
</div>
</header>
<section id="program">
<div class="container">
<h2>Ruby Fun Day!</h2>
<div class="rfd-box">
<div class="rfd-calendar">
<img src="../img/rfd-calendar.gif" height="90" width="90" alt="Nov 26">
</div>
<div class="rfd-venue">
<h4>Universidad de Palermo</h4>
<address>
Mario Bravo 1050<br>
Buenos Aires
</address>
</div>
</div>
<div class="rfd-description"><%= t('rfd_description') %></div>
</div>
<div class="container no-margin">
<a href="https://eventioz.com.ar/e/ruby-fun-day-2013/registrations/new" class="btn btn-red btn-large"><i class="icon-ticket"></i> <%= t('register_rfd') %></a>
</div>
<div class="container">
<h2><%= t('rfd_title')%></h2>
<% @rfd_speakers.each do |speaker| %>
<% if speaker[1]['bio'] %>
<div class="session">
<% if speaker[1]['hidden'] %>
<div class='pic'><!-- No pic for you! --></div>
<div class="txt">
<h4><%= speaker[1]['title'] || t('tba') %></h4>
<p class="session-details"><%= speaker[1]['abstract']%></p>
</div>
<% else %>
<a id="<%= speaker[0] %>"></a>
<div class="pic">
<img class="speaker" alt="<%= speaker[1]['full_name']%>" src="../img/speakers/<%= speaker[0] %>.jpg" />
</div>
<div class="txt">
<h3>
<%= speaker[1]['full_name']%>
<% if speaker[1]['twitter'] %><a href="http://twitter.com/<%= speaker[1]['twitter'] %>"><i class="icon-twitter"></i></a><% end %>
<% if speaker[1]['github'] %><a href="http://github.com/<%= speaker[1]['github'] %>"><i class="icon-github"></i></a><% end %>
</h3>
<p class="bio"><%= speaker[1]['bio'] || '...' %></p>
<h4><%= speaker[1]['title'] || t('tba') %></h4>
<p class="session-details"><%= speaker[1]['abstract']%></p>
</div>
<% end %>
</div>
<% end %>
<% end %>
</div>
</section>
<footer>
<p><%= t('footer_first') %> <abbr title="Ruby Argentina Asociación Civil">RAAC</abbr>, <%= t('footer_end') %>.</p>
<p class="pull-right">
<a href="http://twitter.com/rubyconfar" title="Twitter"><i class="icon-twitter-sign icon-2x"></i></a>
<a href="http://facebook.com/rubyconfar" title="Facebook"><i class="icon-facebook-sign icon-2x"></i></a>
<a href="https://vimeo.com/rubyargentina" title="Vimeo"><i class="icon-youtube-play icon-2x"></i></a>
</p>
<p class="past-editions">
<%= t('past_editions') %>:
<a href="http://2011.rubyconfargentina.org">RubyConf Argentina 2011</a>
<a href="http://2012.rubyconfargentina.org">RubyConf Argentina 2012</a>
</p>
<p class="admission-disclaimer">
<%= t('admission_disclaimer') %>
</p>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-83541-16']);
_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>