index.html 467 B

12345678910111213
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>Главная страница</h1>
  4. {% for service in service_list%}
  5. <div>
  6. <h5 class="index-title">{{service.title}}</h5>
  7. <p>{{service.desc}}</p>
  8. <img src="{{service.image.url}}" width="350px" height="250px">
  9. <a href="{% url 'detail' service.id %}" class="btn btn-warning">Узнать подробнее</a>
  10. </div>
  11. {% endfor %}
  12. {% endblock %}