mauflix/source/templates/section.html

48 lines
1.4 KiB
HTML

<section class="hero">
<<<<<<< HEAD
<<<<<<< HEAD
<div class="hero-body hero-cartels">
{% if request.get_full_path == "/" %}
<p class="title"><a href="movies/{{ section }}">{{ 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 class="hero-body">
<p class="title">{{ section }}</p>
<div class="columns is-desktop">
=======
<div class="hero-body hero-cartels">
<p class="title"><a href="movies/{{ section }}">{{ section }}<span class="arrows"/></a></p>
<div class="cartels">
>>>>>>> 098cb26 (Adición de ficha por peli)
{% 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>
<<<<<<< HEAD
{{ movie }}
>>>>>>> fb23014 (Inicio de diseño)
=======
>>>>>>> 098cb26 (Adición de ficha por peli)
</div>
{% endfor %}
</div>
</div>
</section>