Files
jellyplist/templates/items.html
2024-11-22 12:29:29 +00:00

12 lines
289 B
HTML

{% extends "base.html" %}
{% block content %}
<h1 class="mb-4">{{ items_title }}</h1>
<h6 class="mb-4">{{ items_subtitle }}</h6>
<div class="row row-cols-1 row-cols-md-4 row-cols-lg-6 g-4" id="items-container">
{% include 'partials/_spotify_items.html' %}
</div>
{% endblock %}