summaryrefslogtreecommitdiff
path: root/templates/shortcodes/shikwasa.html
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/[email protected]/dist/style.css"/>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/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>