-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_finder.py
More file actions
32 lines (29 loc) · 928 Bytes
/
Copy pathimage_finder.py
File metadata and controls
32 lines (29 loc) · 928 Bytes
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
def get_option_images():
"""Gets icons and URL's for options page."""
images = [
{"id": 1,
"source": "static/img/shopping-cart.png",
"url": "https://us.7digital.com/",
"label": "BUY SONG"},
{"id": 2,
"source": "static/img/musical-note.png",
"url": "/play",
"label": "REPLAY GETAWAY"},
{"id": 3,
"source": "static/img/play-button.png",
"url": "/login",
"label": "SAVE GETAWAY (login)"},
{"id": 4,
"source": "static/img/planet-earth.png",
"url": "https://www.expedia.com/",
"label": "BOOK TRAVEL"},
{"id": 5,
"source": "static/img/home.png",
"url": "/",
"label": "NEW GETAWAY"},
{"id": 6,
"source": "static/img/playlist.png",
"url": "/login",
"label": "REPLAY PRIOR GETAWAYS (login)"}
]
return images