This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
Episodes.Community/LandingPage/templates/shows.html

17 lines
346 B
HTML
Raw Normal View History

2018-02-27 18:14:28 +00:00
{% extends "base.html" %}
{% block content %}
<div class="container mt-4 mb-4">
<h1>Show Index</h1>
<div class="row">
{% for show in shows %}
<div class="col">
2018-03-02 13:46:25 +00:00
<a href="{{show.url}}">{{show.name}}</a>
2018-02-27 18:14:28 +00:00
</div>
{% if forloop.counter|divisibleby:3 %}
<div class="w-100"></div>
{% endif %}
{% endfor %}
</div>
</div>
{% endblock %}