Advertisement
keselyoleren

Untitled

Aug 10th, 2023
839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1.  <div class="carousel-inner relative w-full overflow-hidden"  style=" width:100%; height: 500px !important;">
  2.             {% for item in tag|get_banner %}
  3.                 {% if forloop.counter == 1 %}
  4.                     <div class="carousel-item active float-left w-full">
  5.                         {% if item.is_mobile %}
  6.                             {% comment %} banner mobile {% endcomment %}
  7.                             <img src="{{ item.photo.url }}" style="height: 50%;" class="block w-full" alt="Wild Landscape" />
  8.                         {% else %}
  9.                             {% comment %} banner dekstop {% endcomment %}
  10.                             <img src="{{ item.photo.url }}" style="height: 50%;" class="block w-full" alt="Wild Landscape" />
  11.                         {% endif %}
  12.  
  13.                     </div>    
  14.                 {% else %}
  15.                 <div class="carousel-item float-left w-full">
  16.                     <img src="{{ item.photo.url }}" class="block w-full" alt="Wild Landscape" />
  17.                 </div>
  18.                 {% endif %}
  19.             {% endfor %}
  20.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement