blob: 93c46012e51efec8cf3f760c63e1501d96e87ebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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>
<div class="podcast">
<script>
const player = new Shikwasa.Player({
container: () => document.querySelector(".podcast"),
audio: {
title: "{{subtitle}}",
artist: "{{author}}",
cover: "{{image | safe}}",
src: "{{media | safe}}",
},
fixed: {
type: "static",
},
});
</script>
</div>
|