Advertisement
Guest User

Untitled

a guest
Sep 13th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3.    <script src="https://cdn.podlove.org/web-player/5.x/embed.js"></script>
  4. </head>
  5. <body>
  6. @foreach(var episode in Model.Episodes)
  7. {
  8.   <div id="PodcastId_@episode.Id">
  9.    <root>
  10.        <CustomizedPlayerMarkup/>
  11.    </root>
  12.    </div>
  13.    <script>
  14.     podlovePlayer('#PodcastId_@Model.Id', '/podcast/GetEpisodeModel?eps=@Model.Id').then(function() {
  15.             $('#LoadingPodcastAnimation_@Model.Id').remove();
  16.         } );
  17.    </script>
  18. }
  19. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement