Spaces:
Paused
Paused
| {% extends 'base.html' %} | |
| {% block content %} | |
| {% for person in persons %} | |
| <div class="tile-element"> | |
| <a href="cast/{{ person.id }}"> | |
| <img src="https://image.tmdb.org/t/p/w500{{ person.profile_path }}" alt="{{ person.name}}"> | |
| </a> | |
| <h2>{{ person.name }}</h2> | |
| </div> | |
| {% endfor %} | |
| {% endblock %} |