-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (86 loc) · 3 KB
/
index.html
File metadata and controls
92 lines (86 loc) · 3 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="css/standard.css" />
<link rel="stylesheet" href="css/desktop.css" />
<link rel="stylesheet" href="css/mobile.css" />
<link rel="stylesheet" href="css/font-awesome.css">
</head>
<body>
<div id="container">
<div id="side">
<div id="logo">
<img src="assets/intoxicoders-wide.png" class="mobile" />
<img src="assets/intoxicoders-wide.png" class="desktop" />
</div>
<div id="leader">
A social calendar for #dctech.<br/>Emphasis on social.
</div>
</div>
<div id="trailer">
Follow us on <a href="http://twitter.com/intoxicoders" target="_blank">Twitter</a> for new event announcements.<br/>
New events? Let <a href="http://twitter.com/kylehill" target="_blank">@kylehill</a> or
<a href="http://twitter.com/grafxnerd" target="_blank">@grafxnerd</a> know. (Or, <a href="http://github.com/intoxicoders/intoxicoders.github.com" target="_blank">submit a pull request</a> :-D)
</div>
<div id="list">
</div>
</div>
<script src="libs/jquery-1.8.2.min.js"></script>
<script src="libs/handlebars-1.0.rc.1.js"></script>
<script src="js/data.js"></script>
<script src="js/code.js"></script>
<script type="text/x-handlebars-template" data-template="event">
{{#each activeEvents}}
<div class="event">
<div class="meta">
<div class="when">
<div class="month">{{month}}</div>
<div class="date">{{date}}</div>
<div class="time">{{time}}</div>
</div>
<div class="mobile-tags">
{{tagger}}
</div>
</div>
<div class="body">
{{#if link}}
<a href="{{link}}" target="_blank"><div class="title">{{title}}
<span class="desktop-tags">{{tagger}}</span>
</div></a>
{{else}}
<div class="title">
{{title}}
{{tagger}}
</div>
{{/if}}
<div class="place">
<div class="location">{{location}}</div>
{{#if address}}
<div class="address">{{address}}</div>
{{/if}}
</div>
<div class="description">
{{{description}}}
</div>
</div>
</div>
{{/each}}
</script>
<script>
$(document).ready(function(){
Code.prepare(Code.render);
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36830079-1']);
_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>