trail_list.html 531 B

1234567891011121314151617181920212223
  1. {% extends "base_list.html" %}
  2. {% block title %}Trails{% endblock %}
  3. {% block head_extra %}
  4. <style>
  5. dl { width: 210px; float:left; margin-right: 10px; }
  6. dt a { color:white; text-decoration: none; font-size:smaller; }
  7. img { height:200px; width: 200px; object-fit: cover; }
  8. dd .right { float:right; }
  9. </style>
  10. {% endblock %}
  11. {% block lists %}
  12. <div class="row">
  13. <div class="col-md">
  14. <div class="table-responsive">
  15. {% include "_scrobblable_list.html" %}
  16. </div>
  17. </div>
  18. </div>
  19. {% endblock %}