Files
vrobbler/vrobbler/templates/drinks/drink_list.html
Colin Powell 6861e28ac6
All checks were successful
ci / test (push) Successful in 2m48s
ci / build-and-deploy (push) Has been skipped
[drinks] Add Drink as a scrobbleable media
2026-07-13 19:12:59 -04:00

24 lines
531 B
HTML

{% extends "base_list.html" %}
{% block title %}Drinks{% endblock %}
{% block head_extra %}
<style>
dl { width: 210px; float:left; margin-right: 10px; }
dt a { color:white; text-decoration: none; font-size:smaller; }
img { height:200px; width: 200px; object-fit: cover; }
dd .right { float:right; }
</style>
{% endblock %}
{% block lists %}
<div class="row">
<div class="col-md">
<div class="table-responsive">
{% include "_scrobblable_list.html" %}
</div>
</div>
</div>
{% endblock %}