forked from podigee/podigee-podcast-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (76 loc) · 3.45 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="The Podigee Podcast Player is a HTML5 audio player specially crafted for listening to podcasts.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="example/normalize.css">
<link rel="stylesheet" href="example/styles.css">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="wrapper">
<img src="https://cdn.podigee.com/ppp/podigee-podcast-player.png" alt="The Podigee Podcast Player Logo" class="logo">
<h1 class="page-title">A modern <em>web player</em>. For <em>podcasts</em>. From <em><a href="https://www.podigee.com" title="Podigee - The Podcast Publishing Platform">Podigee</a></em>.</h1>
<p>
<script class="podigee-podcast-player" src="build/javascripts/podigee-podcast-player.js" data-configuration="../example/config.json"></script>
</p>
<div>
<div class="features icon-list">
<div>
<h3><i class="fa fa-html5"></i>HTML5 only</h3>
<p>… allows playback on all kinds of devices from Smartphone to Desktop.</p>
</div>
<div>
<h3><i class="fa fa-image"></i>Themeable</h3>
<p>… to show your own style or choose from premade themes.</p>
</div>
<div>
<h3><i class="fa fa-puzzle-piece"></i>Extensible</h3>
<p>… to keep up with the ever evolving podcast industry.</p>
</div>
<div>
<h3><i class="fa fa-arrows-alt"></i>Responsive</h3>
<p>… making it look good on all screen sizes from small to large.</p>
</div>
</div>
<h2>Extensions</h2>
<div class="extensions icon-list">
<div>
<h3><i class="fa fa-bookmark"></i>Chaptermarks</h3>
<p>… let the listener jump directly to a specific part of the episode.</p>
</div>
<div>
<h3><i class="fa fa-chrome"></i>Chromecast <em>(experimental)</em></h3>
<p>… makes your podcast ready for the big screen.</p>
</div>
<div>
<h3><i class="fa fa-cloud-download"></i>Downloads</h3>
<p>… allow downloading the episode to the device.</p>
</div>
<div>
<h3><i class="fa fa-info"></i>Episode information</h3>
<p>… shows further information like shownotes.</p>
</div>
<div>
<h3><i class="fa fa-list"></i>Playlist</h3>
<p>… lets the listener explore your podcast's back catalog.</p>
</div>
<div>
<h3><i class="fa fa-share-alt"></i>Sharing</h3>
<p>… makes sharing an episode easy as cake.</p>
</div>
<div>
<h3><i class="fa fa-align-justify"></i>Transcripts</h3>
<p>… enable easier finding, citing and sharing.</p>
</div>
</div>
</div>
</div>
</body>
</html>