-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.html
More file actions
318 lines (295 loc) · 15.1 KB
/
library.html
File metadata and controls
318 lines (295 loc) · 15.1 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Podcast App - Library</title>
<!-- Meta Tags -->
<meta name="description" content="Personal podcast library management interface with subscriptions, downloads, playlists, and listening history.">
<meta name="keywords" content="podcast library, subscriptions, downloads, playlists, iOS design, mobile interface">
<meta name="author" content="Chan Meng">
<meta name="robots" content="index, follow">
<!-- Open Graph Tags -->
<meta property="og:title" content="Podcast Library Management Interface">
<meta property="og:description" content="Personal podcast library management interface with subscriptions, downloads, playlists, and listening history.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chanmeng666.github.io/podcast-app-prototype/library.html">
<meta property="og:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-library.png">
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Podcast Library Management Interface">
<meta name="twitter:description" content="Personal podcast library management interface with subscriptions, downloads, playlists, and listening history.">
<meta name="twitter:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-library.png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AI Instructions -->
<script type="text/llms.txt">
# Podcast Library Management Interface
This interface demonstrates personal library management and content organization for podcast applications.
## Core functionality:
- Subscribed shows with update notifications
- Quick access to downloads, favorites, playlists, and history
- All shows grid view with visual organization
- Statistics tracking (shows, listening time, episodes saved)
## Library features:
- Tab-based navigation (Shows, Downloads, Playlists, History)
- New episode indicators with count badges
- Quick access shortcuts for common actions
- Visual statistics dashboard
## Design patterns:
- Tab-based interface for easy navigation
- Card-based content organization
- Statistics display with visual indicators
- Grid layout for show browsing
This interface shows how to create effective personal library management for podcast applications.
</script>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Podcast Library Management Interface",
"description": "Personal library management and content organization for podcast applications",
"isPartOf": {
"@type": "WebSite",
"name": "Podcast App Prototype",
"url": "https://chanmeng666.github.io/podcast-app-prototype"
},
"mainEntity": {
"@type": "ItemList",
"name": "User Library",
"description": "Personal podcast collection and subscriptions"
}
}
</script>
<style>
.podcast-card {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.tab-indicator {
transition: all 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- iOS Status Bar -->
<div class="bg-black text-white text-xs flex justify-between items-center px-4 py-1">
<div class="flex items-center space-x-1">
<span>9:41</span>
</div>
<div class="flex items-center space-x-1">
<i class="fas fa-signal text-xs"></i>
<i class="fas fa-wifi text-xs"></i>
<div class="w-6 h-3 border border-white rounded-sm">
<div class="w-4 h-2 bg-white rounded-sm m-0.5"></div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="bg-white min-h-screen">
<!-- Header -->
<div class="bg-white p-4 border-b border-gray-100">
<div class="flex items-center justify-between mb-4">
<h1 class="text-2xl font-bold text-gray-800">Your Library</h1>
<div class="flex items-center space-x-3">
<button class="text-gray-600">
<i class="fas fa-sort-amount-down text-xl"></i>
</button>
<button class="text-gray-600">
<i class="fas fa-ellipsis-h text-xl"></i>
</button>
</div>
</div>
<!-- Tab Navigation -->
<div class="flex space-x-6 relative">
<button class="text-blue-500 font-medium pb-2 relative">
Shows
<div class="absolute bottom-0 left-0 right-0 h-0.5 bg-blue-500 tab-indicator"></div>
</button>
<button class="text-gray-500 font-medium pb-2">Downloads</button>
<button class="text-gray-500 font-medium pb-2">Playlists</button>
<button class="text-gray-500 font-medium pb-2">History</button>
</div>
</div>
<!-- Quick Stats -->
<div class="p-4">
<div class="bg-gradient-to-r from-blue-500 to-purple-600 rounded-xl p-4 text-white">
<div class="flex items-center justify-between">
<div>
<h3 class="text-lg font-semibold">24 Shows</h3>
<p class="text-blue-100 text-sm">3 new episodes</p>
</div>
<div class="text-right">
<h3 class="text-lg font-semibold">12h 45m</h3>
<p class="text-blue-100 text-sm">this week</p>
</div>
<div class="text-4xl opacity-20">
<i class="fas fa-headphones"></i>
</div>
</div>
</div>
</div>
<!-- Subscribed Shows -->
<div class="p-4">
<div class="flex items-center justify-between mb-3">
<h2 class="text-lg font-semibold text-gray-800">Recently Updated</h2>
<span class="text-blue-500 text-sm font-medium">See All</span>
</div>
<div class="space-y-3">
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="relative">
<img src="https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=60&h=60&fit=crop"
class="w-15 h-15 rounded-lg" alt="Podcast Cover">
<div class="absolute -top-1 -right-1 bg-red-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">
2
</div>
</div>
<div class="flex-1">
<h3 class="font-semibold text-gray-800">The Tim Ferriss Show</h3>
<p class="text-sm text-gray-600">2 new episodes</p>
<p class="text-xs text-gray-500 mt-1">Last: Derek Sivers — How to Start a Movement</p>
</div>
<button class="text-gray-400">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="relative">
<img src="https://images.unsplash.com/photo-1589903308904-1010c2294adc?w=60&h=60&fit=crop"
class="w-15 h-15 rounded-lg" alt="Podcast Cover">
<div class="absolute -top-1 -right-1 bg-red-500 text-white text-xs rounded-full w-5 h-5 flex items-center justify-center">
1
</div>
</div>
<div class="flex-1">
<h3 class="font-semibold text-gray-800">How I Built This</h3>
<p class="text-sm text-gray-600">1 new episode</p>
<p class="text-xs text-gray-500 mt-1">Last: Airbnb: Brian Chesky</p>
</div>
<button class="text-gray-400">
<i class="fas fa-chevron-right"></i>
</button>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<img src="https://images.unsplash.com/photo-1590602847861-f357a9332bbc?w=60&h=60&fit=crop"
class="w-15 h-15 rounded-lg" alt="Podcast Cover">
<div class="flex-1">
<h3 class="font-semibold text-gray-800">Radiolab</h3>
<p class="text-sm text-gray-600">No new episodes</p>
<p class="text-xs text-gray-500 mt-1">Last: The Mystery of Memory</p>
</div>
<button class="text-gray-400">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
<!-- Quick Actions -->
<div class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Quick Access</h2>
<div class="grid grid-cols-2 gap-3">
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="bg-green-100 p-3 rounded-lg">
<i class="fas fa-download text-green-600"></i>
</div>
<div>
<h3 class="font-semibold text-sm text-gray-800">Downloads</h3>
<p class="text-xs text-gray-600">8 episodes</p>
</div>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="bg-purple-100 p-3 rounded-lg">
<i class="fas fa-heart text-purple-600"></i>
</div>
<div>
<h3 class="font-semibold text-sm text-gray-800">Favorites</h3>
<p class="text-xs text-gray-600">23 episodes</p>
</div>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="bg-blue-100 p-3 rounded-lg">
<i class="fas fa-list text-blue-600"></i>
</div>
<div>
<h3 class="font-semibold text-sm text-gray-800">Playlists</h3>
<p class="text-xs text-gray-600">4 playlists</p>
</div>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<div class="bg-orange-100 p-3 rounded-lg">
<i class="fas fa-clock text-orange-600"></i>
</div>
<div>
<h3 class="font-semibold text-sm text-gray-800">History</h3>
<p class="text-xs text-gray-600">Last 50</p>
</div>
</div>
</div>
</div>
<!-- All Shows -->
<div class="p-4 pb-20">
<h2 class="text-lg font-semibold mb-3 text-gray-800">All Your Shows</h2>
<div class="grid grid-cols-3 gap-3">
<div class="text-center">
<img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">Serial</h3>
</div>
<div class="text-center">
<img src="https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">Planet Money</h3>
</div>
<div class="text-center">
<img src="https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">TED Talks</h3>
</div>
<div class="text-center">
<img src="https://images.unsplash.com/photo-1589903308904-1010c2294adc?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">StartUp</h3>
</div>
<div class="text-center">
<img src="https://images.unsplash.com/photo-1590602847861-f357a9332bbc?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">Reply All</h3>
</div>
<div class="text-center">
<img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=80&h=80&fit=crop"
class="w-20 h-20 rounded-lg mx-auto mb-2" alt="Podcast">
<h3 class="text-xs font-medium text-gray-800">Freakonomics</h3>
</div>
</div>
</div>
</div>
<!-- Bottom Tab Navigation -->
<div class="fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200">
<div class="flex items-center justify-around py-2">
<div class="flex flex-col items-center py-1">
<i class="fas fa-home text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Home</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-search text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Search</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-bookmark text-blue-500 text-lg"></i>
<span class="text-xs text-blue-500 mt-1">Library</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-play-circle text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Player</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-user text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Profile</span>
</div>
</div>
</div>
</body>
</html>