-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelete.html
17 lines (15 loc) · 901 Bytes
/
delete.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!-- <div class="owl-carousel owl-theme blog-post">
<h2> Collaborative Based Recommendation </h2>
{% for poster, movieInfo in CollaborativeCards.items() if not cards.hidden %}
<div class="blog-content" data-aos="fade-right" data-aos-delay="200">
<img src={{poster}} alt="Image is Not Available" />
<div class="blog-title">
<h2> {{movieInfo[0]}} </h2>
{% for genre in movieInfo[1] %}
<button class="btn btn-blog">{{genre}}</button>
{% endfor %}
<span>{{ movieInfo[2] }}</span>
</div>
</div>
{% endfor %}
</div> -->