@@ -2,36 +2,44 @@ var fs = require('fs');
2
2
var handlebars = require ( 'handlebars' ) ;
3
3
var _ = require ( 'underscore' ) ;
4
4
5
- var speakers = [
5
+ var cities = [
6
6
{
7
- name : "Justin Abrahms"
8
- , location : "Portland, OR"
9
- , twitter : "@justinabrahms"
10
- , github : "justinabrahms"
11
- , preferred_audience_size : "any"
12
- , travel_availability : "if comped"
13
- }
14
- , {
15
- name : "Christopher Swenson"
16
- , location : "Portland, OR"
17
- , twitter : "@caswenson"
18
- , github : "caswenson"
19
- , preferred_audience_size : "large"
20
- , travel_availability : "local"
7
+ city : "Portland, OR" ,
8
+ speakers : [
9
+ {
10
+ name : "Justin Abrahms"
11
+ , location : "Portland, OR"
12
+ , twitter : "@justinabrahms"
13
+ , github : "justinabrahms"
14
+ , preferred_audience_size : "any"
15
+ , travel_availability : "if comped"
16
+ }
17
+ , {
18
+ name : "Christopher Swenson"
19
+ , location : "Portland, OR"
20
+ , twitter : "@caswenson"
21
+ , github : "caswenson"
22
+ , preferred_audience_size : "large"
23
+ , travel_availability : "local"
24
+ }
25
+ ]
21
26
}
22
27
, {
28
+ city : "San Francisco, CA"
29
+ , speakers : [ {
23
30
name : "Jason Denizac"
24
31
, location : "San Fancisco, CA"
25
32
, twitter : "@_jden"
26
33
, github : "jden"
27
34
, preferred_audience_size : "small"
28
35
, travel_availability : "any"
29
- }
36
+ } ]
37
+ }
30
38
] ;
31
39
32
40
function get_speakers ( ) {
33
41
return {
34
- speakers : speakers
42
+ cities : cities
35
43
} ;
36
44
} ;
37
45
0 commit comments