forked from mdn/sw-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-list.js
26 lines (21 loc) · 1.15 KB
/
image-list.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
var Path = 'gallery/';
var Gallery = { 'images' : [
{
'name' : 'Darth Vader',
'alt' : 'A Black Clad warrior lego toy',
'url': 'gallery/myLittleVader.jpg',
'credit': '<a href="https://www.flickr.com/photos/legofenris/">legOfenris</a>, published under a <a href="https://creativecommons.org/licenses/by-nc-nd/2.0/">Attribution-NonCommercial-NoDerivs 2.0 Generic</a> license.'
},
{
'name' : 'Snow Troopers',
'alt' : 'Two lego solders in white outfits walking across an icy plain',
'url': 'gallery/snowTroopers.jpg',
'credit': '<a href="https://www.flickr.com/photos/legofenris/">legOfenris</a>, published under a <a href="https://creativecommons.org/licenses/by-nc-nd/2.0/">Attribution-NonCommercial-NoDerivs 2.0 Generic</a> license.'
},
{
'name' : 'Bounty Hunters',
'alt' : 'A group of bounty hunters meeting, aliens and humans in costumes.',
'url': 'gallery/bountyHunters.jpg',
'credit': '<a href="https://www.flickr.com/photos/legofenris/">legOfenris</a>, published under a <a href="https://creativecommons.org/licenses/by-nc-nd/2.0/">Attribution-NonCommercial-NoDerivs 2.0 Generic</a> license.'
},
]};