14 lines
385 B
HTML
14 lines
385 B
HTML
{% include "fragments/menu.html" %}
|
|
<div class="flex justify-center">
|
|
<div class="m-12 grow max-w-4xl">
|
|
<div id="playlist-name">
|
|
{% include "fragments/playlist/name.html" %}
|
|
</div>
|
|
<div class="text-left">
|
|
{% set playlist_id = playlist.id %}
|
|
{% set playlist = playlist %}
|
|
{% include "fragments/playlist/playlist.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|