-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
74 lines (73 loc) · 4.33 KB
/
Copy pathdetail.html
File metadata and controls
74 lines (73 loc) · 4.33 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dropcast - Podcast Template from Codrops</title>
<link rel="stylesheet" href="assets/css/dropcast.css">
<link rel="author" href="humans.txt">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rufina:400,700|Source+Sans+Pro:200,300,400,600,700" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/particles.js/2.0.0/particles.min.js"></script>
</head>
<body class="page--detail">
<nav>
<div class="logo nav__logo">
<a href="index.html"><img src="assets/images/logo.svg" alt="logo"/></a>
</div>
<ul class="nav__list">
<li class="nav__item"><a href="">Episodes</a></li>
</ul>
<ul class="nav__social">
<li><a href="#" class="nav_social__item"><i class="fab fa-google-play"></i></a></li>
<li><a href="#" class="nav_social__item"><i class="fab fa-itunes-note"></i></a></li>
<li><a href="#" class="nav_social__item"><i class="fas fa-rss-square"></i></a></li>
</ul>
</nav>
<section class="site">
<div id="site__bg"></div>
<div class="left">
<label for="" class="site__label">Episode #1</label>
<h1 class="site__title site__title--separator">Linda Watkins</h1>
</div>
<div class="right">
<img src="assets/images/photos/original/1.png" alt="" class="episode__image">
<div class="audio-player site__playbar">
<div class="loading">
<div class="spinner"></div>
</div>
<button class="play-pause-btn play"></button>
<div class="controls">
<span class="current-time">0:00</span>
<div class="slider" data-direction="horizontal">
<div class="progress">
<div class="pin" id="progress-pin" data-method="rewind"></div>
</div>
</div>
<span class="total-time">0:00</span>
</div>
<audio preload="true">
<source src="assets/audio/example.ogg" type="audio/ogg" />
<source src="assets/audio/example.mp3" type="audio/mpeg">
</audio>
</div>
<h4 class="site__secondary_title">Show Notes</h4>
<p class="site__description">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the <a href="#">industry's standard</a> dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the <a href="#">1960s</a> with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make <a href="#">a type specimen book</a>. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<div class="site__navigation">
<!-- toggle on the previous as needed -->
<a href="#" class="site__navigation_items site__navigation_items--left hidden">
<label for="">Previous Episode</label>
<h4>Dylan Perry</h4>
</a>
<a href="#" class="site__navigation_items site__navigation_items--right">
<label for="">Next Episode</label>
<h4>Dylan Perry</h4>
</a>
</div>
</div>
</section>
<script src="assets/js/dropcast.js"></script>
<script src="assets/js/player.js"></script>
</body>
</html>