... |
... |
@@ -1,3 +1,17 @@ |
1 |
|
-{{embed url="https://open.spotify.com/playlist/0e8guQffSLf0AD7SayyGpc?si=rxj7RDMuSoy5U0tINuoOWQ" width="800"/}} |
|
1 |
+{{html}} |
|
2 |
+<script src="https://open.spotify.com/embed/iframe-api/v1" async></script> |
2 |
2 |
|
3 |
|
- |
|
4 |
+<div id="embed-iframe"></div> |
|
5 |
+ |
|
6 |
+<script> |
|
7 |
+ window.onSpotifyIframeApiReady = (IFrameAPI) => { |
|
8 |
+ let element = document.getElementById("embed-iframe"); |
|
9 |
+ let options = { |
|
10 |
+ uri: "spotify:playlist:0e8guQffSLf0AD7SayyGpc", |
|
11 |
+ }; |
|
12 |
+ let callback = (EmbedController) => {}; |
|
13 |
+ IFrameAPI.createController(element, options, callback); |
|
14 |
+ }; |
|
15 |
+</script> |
|
16 |
+{{/html}} |
|
17 |
+ |