forked from braziljs/conf-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docpad.coffee
149 lines (140 loc) · 4.02 KB
/
docpad.coffee
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
module.exports =
# These are variables will be accessible via our templates
templateData:
# Conference info
conf:
name: "Payphone Hack Day"
date: "January 26 - 27"
price: ""
venue: "NYU ITP"
address: "721 Broadway, 4th Floor"
city: "New York"
state: "New York"
# Site info
site:
url: "http://payphonehackday.com"
favicon: "https://dl.dropbox.com/u/17922559/favicon.png"
googleanalytics: ""
images:
cover: "https://dl.dropbox.com/u/17922559/phonebooth.png"
facebook: ""
# Active sections on the website
# to deactivate comment out with '#'
# you can also change order here and it will reflect on page
sections: [
'about'
'location'
'schedule'
'speakers'
#'sponsors'
'partners'
#'contact'
]
# Labels which you can translate to other languages
labels:
about: "About"
location: "Location"
speakers: "Guests"
schedule: "Schedule"
sponsors: "Sponsors"
partners: "Partners"
contact: "Contact"
# The entire schedule
schedule: [
twitter: "Founder"
bio: "Mahaya, Uncommon Projects"
photo: "https://dl.dropbox.com/u/17922559/tarikh.jpg"
presentation:
title: "Tarikh Korula"
time: "Ringmaster"
,
twitter: "Co-founders"
bio: "Antenna Design"
photo: "https://dl.dropbox.com/u/17922559/antenna.jpg"
presentation:
title: "Masamichi Udagawa & Sigi Moeslinger"
time: "Reviewer"
,
twitter: "Director of R&D"
bio: "Control Group"
photo: "https://dl.dropbox.com/u/17922559/brianjones.jpg"
presentation:
title: "Brian Jones"
time: "Reviewer"
,
description: "Welcome Presentations from Organizers and Partners"
time: "10:45am"
name: "Saturday, January 26"
,
description: "Hacking Begins / API Workshops"
time: "11:00am"
,
description: "Doors Close"
time: "9:00pm"
,
name: "Sunday, January 27"
description: "Doors Open"
time: "10:00am"
,
description: "Demos and Presentations"
time: "2:00pm"
,
description: "Close"
time: "4:00pm"
]
# List of Sponsors
sponsors: [
name: "Eventick"
logo: "http://f.cl.ly/items/1U3p0Z0e2w0I1i3z1X22/Image%202012.09.25%203:00:58%20PM.png"
url: "http://eventick.com.br"
]
# List of Partners
partners: [
name: "Octopart"
logo: "https://dl.dropbox.com/u/17922559/logo%20-%20octopart.png"
url: "http://octopart.com"
,
name: "TokBox"
logo: "https://dl.dropbox.com/u/17922559/logo-tokbox.png"
url: "http://www.tokbox.com"
,
name: "Adafruit"
logo: "https://dl.dropbox.com/u/17922559/logo%20adafruit.png"
url: "http://www.adafruit.com"
,
name: "Twilio"
logo: "https://dl.dropbox.com/u/17922559/logo%20twilio.png"
url: "http://www.twilio.com"
,
name: "Mashery"
logo: "https://dl.dropbox.com/u/17922559/logo-mashery.png"
url: "http://www.mashery.com"
,
name: "Foursquare"
logo: "https://dl.dropbox.com/u/17922559/logo-4sq.png"
url: "http://wwwwfoursquare.com"
,
name: "Grand St"
logo: "https://dl.dropbox.com/u/17922559/logo%20grand%20st.png"
url: "http://www.grandst.com"
,
name: "NYTimes"
logo: "https://dl.dropbox.com/u/17922559/logo%20nytimes.png"
url: "http://developer.nytimes.com"
,
name: "10gen"
logo: "https://dl.dropbox.com/u/17922559/logo-10gen.png"
url: "http://www.10gen.com"
,
name: "NYC Digital"
logo: "https://dl.dropbox.com/u/17922559/logo%20nyc.png"
url: "http://www.nyc.gov/digital"
,
name: "NYC DoITT"
logo: "https://dl.dropbox.com/u/17922559/log-doitt.png"
url: "http://www.nyc.gov/doitt"
,
name: "NYU ITP"
logo: "https://dl.dropbox.com/u/17922559/logo-itp.png"
url: "http://itp.nyu.edu"
]