-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.jade
More file actions
76 lines (66 loc) · 2.68 KB
/
layout.jade
File metadata and controls
76 lines (66 loc) · 2.68 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
!!! 5
html(lang="en")
head
title NodeKC - Kansas City's Node.js user group
meta(content='True', name='HandheldFriendly')
meta(content='320', name='MobileOptimized')
meta(content='width=device-width, target-densitydpi=160dpi, initial-scale=1.0', name='viewport')
script
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27907751-4']);
_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);
})();
link(rel='stylesheet', href='/css/app.css')
body
h1 NodeKC
form(action='http://groups.google.com/group/kc-nodejs/boxsubscribe').join
input(type='submit', value='join')
label
.events.section
h2 events
ul.container
li
a(href='https://www.google.com/calendar/b/0/embed?src=nodekc.org_e8lg6hesldeld1utui23ebpg7k@group.calendar.google.com&ctz=America/Chicago&gsessionid=RKXEjz6D5m8kzZ0lZunOpQ')
.time Tue, Jan 31 7:00pm CST
h3 EVENT: Inaugural meetup
p We'll discuss the intent of the group and announce the first project.
h2 git
ul.container
each item in gitEvents
li
a(href="http://github.com/" + item.actor, target="_blank")
img(src="https://secure.gravatar.com/avatar/" + item.actor_gravatar_id + "?s=140")
.time= item.timeago
h3= item.actor
.subtitle= item.repo
each commit in item.commits
p= commit.message
.messages.section
h2 messages
ul.container
each item in messages
li
a(href=item.url, target='_blank')
.time= item.timeago
h3= item.subject
.subtitle by #{item.author}
p= item.body
li
a.more(href='https://groups.google.com/group/nodekc') google group…
.tweets.section
h2 tweets
ul.container
each item in tweets
li
a(href='http://twitter.com/' + item.created_by, target='_blank')
img(src='http://api.twitter.com/1/users/profile_image/' + item.created_by + '.png', alt=item.created_by)
.time #{item.timeago}
h3= item.created_by
p= item.tweet
li
a.more(href='https://twitter.com/#!/nodekc') more tweets…