-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.js
52 lines (51 loc) · 1.69 KB
/
grid.js
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
var blog_list = new Vue({
el: '#js-grid-list',
data: {
// The layout mode, possible values are "grid" or "list".
layout: 'grid',
// demo data
blog_posts: [{
title: 'Art in our park',
url: 'http://www.artinourpark.ca/?fbclid=IwAR3Wi_gtKxKEC5VgAEwKCImqQPW7TcOe9kXVETAEfGLTW43K_I1iArtpgyU',
image: {
'large': 'http://www.artinourpark.ca/img/portfolio/3.jpg',
'small': 'http://www.artinourpark.ca/img/portfolio/3.jpg'
}
}, {
title: 'ok webside',
url: 'http://www.bushrayousaf.com/214183-2/',
image: {
'large': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/about58.jpg',
'small': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/about58.jpg'
}
}, {
title: 'same website!',
url: 'http://www.bushrayousaf.com/214183-2/',
image: {
'large': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/about65.jpg',
'small': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/about65.jpg'
}
}, {
title: 'what you think.',
url: 'http://www.bushrayousaf.com/214183-2/',
image: {
'large': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/20180427_171343.jpg',
'small': 'http://www.bushrayousaf.com/wp-content/uploads/2018/06/20180427_171343.jpg'
}
}, {
title: 'I am Awsome and i know it hahah',
url: 'http://www.bushrayousaf.com/214183-2/',
image: {
'large': 'http://www.artinourpark.ca/img/portfolio/14.jpg',
'small': 'http://www.artinourpark.ca/img/portfolio/14.jpg'
}
}, {
title: 'love this photo',
url: 'http://www.bushrayousaf.com/214183-2/',
image: {
'large': 'http://www.artinourpark.ca/img/music/10.jpg',
'small': 'http://www.artinourpark.ca/img/music/10.jpg'
}
}]
}
});