update
This commit is contained in:
@@ -181,6 +181,43 @@
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
<!--====================== Product Section ======================-->
|
||||
{% if products %}
|
||||
<section class="services-area layout2 sec-mar">
|
||||
<div class="container">
|
||||
<div class="title-wrap wow animate fadeInUp" data-wow-delay="200ms" data-wow-duration="1500ms">
|
||||
<div class="sec-title white">
|
||||
<span>Our Solutions</span>
|
||||
<h2>Product</h2>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="swiper services-slider">
|
||||
<div class="swiper-wrapper">
|
||||
{% for product in products %}
|
||||
<div class="swiper-slide wow animate fadeInUp" data-wow-delay="400ms" data-wow-duration="1500ms">
|
||||
<div class="single-service layout2">
|
||||
<span>0{{ forloop.counter }}</span>
|
||||
{% if product.name %}
|
||||
<h4>{{ product.name }}</h4>
|
||||
{% endif %}
|
||||
{% if product.short_description %}
|
||||
<p>{{ product.short_description }}</p>
|
||||
{% endif %}
|
||||
<div class="read-btn">
|
||||
<a href="{% url "productDetail" product.slug %}">Read More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="swiper-pagination d-md-none d-md-block"></div>
|
||||
</div>
|
||||
<div class="swiper-button-next"></div>
|
||||
<div class="swiper-button-prev"></div>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
<!--====================== Project Section ======================-->
|
||||
{% if projects %}
|
||||
<section class="project-area sec-mar">
|
||||
|
||||
Reference in New Issue
Block a user