blob: af83f34f8f076929d6083135263be137ec358fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<div class='pops'>
<h4>Popular</h4>
<div class='popCard'>
<% popular.map(p => { %>
<div class='popular'>
<h5><%= p.title %></h5>
<img src="/images/<%= p.author.username %>/<%= p.picture %>" alt="recipe" style='width: 10rem; height: 10rem; object-fit: cover;'>
<form action="/recipe/<%= p._id %>">
<button>See Recipe</button>
</form>
</div>
<% }) %>
</div>
</div>
|