-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tmpl
89 lines (83 loc) · 2.83 KB
/
index.tmpl
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#from Cheetah.Template import Template
#extends Template
## SHOW DETAILS:
#set $showinfo = {
"title": "OpenSuspect Podacst",
"description": "Welcome to the OpenSuspect Podacst! In this show, contributors to the OpenSuspect project talk about the game, open-source projects and more!",
"favicon":"https://opensuspect.com/favicon.ico"
}
## PODCATCHER LINKS
#set $podcatchers = [
{
"name": "Apple Podcasts",
"url": "https://podcasts.apple.com/podcast/id1556916527",
"icon": "https://podcasts.apple.com/favicon.ico"
},
{
"name": "Google Podcasts",
"url": "https://podcasts.google.com/feed/aHR0cHM6Ly9wb2RjYXN0Lm9wZW5zdXNwZWN0LmNvbS9mZWVkLnhtbA",
"icon": "https://ssl.gstatic.com/images/branding/product/2x/podcasts_24dp.png"
},
{
"name": "TuneIn",
"icon": "https://cdn-web.tunein.com/assets/img/favicon-v2.ico",
"url": "https://tunein.com/podcasts/Technology-Podcasts/OpenSuspect-Podcast-p1414077/"
},
{
"name": "Spotify",
"icon": "https://open.scdn.co/cdn/images/favicon32.a19b4f5b.png",
"url": "https://open.spotify.com/show/6shDLY5fezmIFirpAappb4"
},
{
"name": "Stitcher",
"url": "https://www.stitcher.com/show/opensuspect-podcast",
"icon": "https://www.stitcher.com/favicon.ico"
},
{
"name": "Funkwhale",
"url": "https://music.zee.li/channels/opensuspectpodcast/",
"icon": "https://music.zee.li/front/favicon.png"
},
{
"name": "listenr",
"url": "https://lstnr.gq/OpenSuspect",
"icon": "https://listenrapp.me/icon-192.png"
},
{
"name": "YouTube",
"url": "https://youtube.com/playlist?list=PLp2sbDFlULKiWZ_ib0T66akEb0s2R7NS9",
"icon": "https://www.youtube.com/s/desktop/01a10dcc/img/favicon_32.png"
},
{
"name": "RSS",
"url": "https://podcast.opensuspect.com/feed.xml",
"icon": "https://upload.wikimedia.org/wikipedia/en/thumb/4/43/Feed-icon.svg/128px-Feed-icon.svg.png"
}
]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="$showinfo.favicon">
<link rel="stylesheet" href="index.css">
<meta name="description" content="$showinfo.description">
<title>$showinfo.title</title>
</head>
<body>
<h1 class="center">$showinfo.title</h1>
<p class="center">
<i>
Subscribe On
</i>
</p>
<div class="flex" id="podcatcher_list">
#for catcher in $podcatchers
<a class="podcatcher" target="_blank" href="$catcher.url" title="$catcher.name">
<img src="$catcher.icon" alt="$catcher.name">
</a>
#end for
</div>
</body>
</html>