Cocktail-DB/cocktail_list/templates/strumenti.html

37 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% load static %}
{% block css %}
<link rel="stylesheet" href="{% static 'css/navbar_style.css' %}">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link href="https://fonts.googleapis.com/css2?family=Faster+One&display=swap" rel="stylesheet">
{% endblock css %}
{% block title %}
STRUMENTI
{% endblock title %}
{% block content %}
{% for strumenti in lista_strumenti %}
{% if forloop.first %} <div class="row"> {% endif %}
<div class="col-lg-4 my-3">
<div class="card h-100 my-1 border border-info">
<div class="card-img-top"><img src="{{ strumenti.immagine_strumenti.url }}" class="img-fluid" alt="{{ strumenti.nome_strumento }}"></div>
<div class="card-body py-0">
<br>
<div class="text-center" id="color-for-glass">{{ strumenti.nome_strumento }}</div>
<p class="mt-2 mb-0 py-3 text-center">{{ strumenti.descrizione}}</p>
</div>
</div>
</div>
{% if forloop.counter|divisibleby:"3" or forloop.last %}
</div>
{% endif %}
{% if forloop.counter|divisibleby:"3" and not forloop.last %}
<div class="row">
{% endif %}
{% endfor %}
{% endblock content %}