mauflix/source/templates/section.html

30 lines
833 B
HTML

<section class="hero">
<div class="hero-body hero-cartels">
{% if request.get_full_path == "/" %}
<p class="title">
{% if gender %}
<a href="{% url 'search' 'g' section %}">
{% else %}
<a href="{% url 'search' 's' section %}">
{% endif %}
{{ section }}<span class="arrows"/></a>
</p>
{% else %}
<p class="title">{{ section }}</p>
{% endif %}
<div class="cartels">
{% for movie in content %}
<div class="cartel">
<input type="checkbox" class="toggle">
<div class="info">
{% include 'info.html' with movie=movie %}
</div>
<figure class="image is-2by3">
<img src="{{ movie.cartel }}">
</figure>
</div>
{% endfor %}
</div>
</div>
</section>