-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathBlog.pl
41 lines (38 loc) · 1.07 KB
/
Blog.pl
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
[ Blog => {
id => 1,
title => 'Hello!',
subtitle => 'A subtitle',
created_time => '1302056856',
location => 'Chico, California',
content => q|Hello! content|,
tags => [{name => 'personal'}, {name => 'test'}]
},
Blog => {
id => 2,
title => 'Tech',
subtitle => 'A subtitle',
created_time => '1777777777',
location => 'Chico, California',
content => 'Tech content',
tags => [{name => 'tech'}],
},
Blog => {
id => 3,
title => 'non-tech 2',
subtitle => 'A subtitle',
created_time => '1302056857',
location => 'Chico, California',
content => 'non-tech 2 content',
tags => [{name => 'personal'}],
},
Blog => {
id => 4,
title => 'Hidden',
subtitle => 'A subtitle',
created_time => '1888888888',
location => 'Chico, California',
content => 'Hidden content',
#tags => [{name => 'personal'}, {name => 'hidden'}],
tags => [{name => 'hidden'}],
}
]