blob: 10ac1d7c919ecb887f5cc709d5910ce6fcfdc0cb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | <div class="podcast">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/shikwasa@2.2.0/dist/style.css"/>
  <script src="https://cdn.jsdelivr.net/npm/shikwasa@2.2.0/dist/shikwasa.min.js"></script>
  <script>
    const player = new Shikwasa.Player({
      container: () => document.querySelector(".podcast"),
      audio: {
        title: "{{subtitle}}",
        artist: "{{author}}",
        cover: "{{image}}",
        src: "{{media}}",
      },
      fixed: {
        type: "static",
      },
    });
  </script>
</div>
 |