Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TN Medical Connect | Podcasts</title> | |
| <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"> | |
| <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body class="podcast-page"> | |
| <!-- Podcast Page --> | |
| <div class="min-h-screen flex flex-col bg-white"> | |
| <!-- Header / Navbar --> | |
| <header class="bg-primary text-white"> | |
| <div class="max-w-7xl mx-auto px-4 py-3 flex items-center justify-between"> | |
| <h1 class="text-2xl font-bold">TN Medical Connect</h1> | |
| <nav class="space-x-4 text-sm"> | |
| <a href="#" class="hover:underline">Home</a> | |
| <a href="#" class="hover:underline font-semibold">Podcasts</a> | |
| <a href="#" class="hover:underline">Research</a> | |
| <!-- ...other nav links --> | |
| </nav> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="flex-1 max-w-7xl mx-auto p-4"> | |
| <!-- Page Title --> | |
| <div class="mb-6"> | |
| <h2 class="text-3xl font-bold text-gray-800">🎙️ Podcasts</h2> | |
| <p class="text-gray-600">Hear from medical experts on the latest topics and trends.</p> | |
| </div> | |
| <!-- Search and Filter --> | |
| <div class="mb-6 flex flex-col md:flex-row md:items-center md:justify-between space-y-2 md:space-y-0"> | |
| <form class="search-form w-full md:w-2/3 flex" data-category="podcast"> | |
| <input type="text" placeholder="Search podcasts..." class="w-full px-3 py-2 border border-gray-300 rounded-l" /> | |
| <button type="submit" class="bg-primary text-white px-4 py-2 rounded-r hover:bg-opacity-90"> | |
| <i class="fas fa-search"></i> | |
| </button> | |
| </form> | |
| <select class="w-full md:w-1/5 px-3 py-2 border border-gray-300 rounded"> | |
| <option>All Topics</option> | |
| <option>Cardiology</option> | |
| <option>Neurology</option> | |
| <option>Public Health</option> | |
| </select> | |
| </div> | |
| <!-- Search Results Container --> | |
| <div id="search-results" class="mb-8 hidden"></div> | |
| <!-- Podcasts Grid --> | |
| <div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Podcast Episode Card 1 --> | |
| <div class="bg-gray-50 border border-gray-200 rounded-lg p-4 shadow-sm hover:shadow-md transition"> | |
| <h3 class="text-xl font-semibold text-gray-800">The Heart of Cardiology</h3> | |
| <p class="text-sm text-gray-500">Host: Dr. A. Kumar · Jan 10, 2025</p> | |
| <p class="mt-2 text-gray-700 text-sm">Discussion on recent advances in cardiology and patient care approaches.</p> | |
| <audio controls class="mt-3 w-full"> | |
| <source src="#" type="audio/mpeg" /> | |
| Your browser does not support the audio element. | |
| </audio> | |
| </div> | |
| <!-- Podcast Episode Card 2 --> | |
| <div class="bg-gray-50 border border-gray-200 rounded-lg p-4 shadow-sm hover:shadow-md transition"> | |
| <h3 class="text-xl font-semibold text-gray-800">Pediatrics Today</h3> | |
| <p class="text-sm text-gray-500">Host: Dr. B. Sharma · Jan 5, 2025</p> | |
| <p class="mt-2 text-gray-700 text-sm">Latest pediatric care techniques and child health insights for practitioners.</p> | |
| <audio controls class="mt-3 w-full"> | |
| <source src="#" type="audio/mpeg" /> | |
| Your browser does not support the audio element. | |
| </audio> | |
| </div> | |
| <!-- Podcast Episode Card 3 --> | |
| <div class="bg-gray-50 border border-gray-200 rounded-lg p-4 shadow-sm hover:shadow-md transition"> | |
| <h3 class="text-xl font-semibold text-gray-800">Global Health Review</h3> | |
| <p class="text-sm text-gray-500">Host: Dr. C. Lee · Dec 20, 2024</p> | |
| <p class="mt-2 text-gray-700 text-sm">A conversation on global health challenges and epidemiology updates.</p> | |
| <audio controls class="mt-3 w-full"> | |
| <source src="#" type="audio/mpeg" /> | |
| Your browser does not support the audio element. | |
| </audio> | |
| </div> | |
| <!-- Additional podcast cards... --> | |
| </div> | |
| <!-- Possibly a "load more" button for more podcasts --> | |
| <div class="mt-8 text-center"> | |
| <button class="bg-primary text-white px-4 py-2 rounded hover:bg-opacity-90">Load More Episodes</button> | |
| </div> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-gray-100"> | |
| <div class="max-w-7xl mx-auto px-4 py-5 text-sm text-gray-600"> | |
| © 2025 TN Medical Connect · <a href="#" class="text-primary hover:underline">Contact Us</a> | |
| </div> | |
| </footer> | |
| </div> | |
| <!-- Script for dynamic search functionality --> | |
| <script src="search.js"></script> | |
| <!-- Script to handle standalone page access --> | |
| <script src="page-utils.js"></script> | |
| </body> | |
| </html> |