-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathdefault.html
50 lines (50 loc) · 2.41 KB
/
default.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge;chrome=1" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport">
<meta content="A curated calendar of Ruby conferences worldwide, including speaking opportunities and registration info." name="description">
<title>Ruby Conferences</title>
<link href="//fonts.googleapis.com/css?family=Squada+One" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Exo+2:300,400" rel="stylesheet" type="text/css">
<link href="/css/style.css" rel="stylesheet" type="text/css">
<link href="/images/favicon.png" rel="icon" type="image/png">
<script src="/js/jquery.js" type="text/javascript"></script>
<script src="/js/moment.min.js" type="text/javascript"></script>
<script src="/js/behavior.js" type="text/javascript"></script>
</head>
<body>
<div id="page">
<header>
<h1><a class="extruded" href="/"><span>Ruby </span><span>Conferences</span></a></h1>
<nav>
<ul>
<li class="{% if page.url == "/" %}active{% endif %}"><a href="/">Upcoming</a></li>
<li class="{% if page.url == "/past/" %}active{% endif %}"><a href="/past/">Past</a></li>
</ul>
</nav>
</header>
{{ content }}
<footer>
<p>created & maintained by <a href="http://jonallured.com">Jon Allured</a></p>
<p>design & markup by <a href="https://www.camerondaigle.com/">Cameron Daigle</a></p>
<ul>
<li><a href="https://twitter.com/rubyconferences">@rubyconferences</a></li>
<li><a href="https://github.com/ruby-conferences/ruby-conferences.github.io">source</a></li>
<li><a href="https://rubyconferences.org/calendar.ics">ics calendar feed</a></li>
</ul>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-3137727-6"]);
_gaq.push(["_trackPageview"]);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</div>
</body>
</html>