- <% var thumbnail %>
- <% if(post.cover != undefined) thumbnail = post.cover %>
- <% if(post.image != undefined) thumbnail = `/images/thumbnails/blog/${post.image.feature}` %>
- <div class="col-3" style="margin-bottom: 30px;">
- <a href="<%= url_for(post.path) %>" class="thumbnail-link">
- <img class="img-fluid thumbnail rounded" src="<%= thumbnail %>">
- <% if(show_title == true || show_title == undefined) { %>
- <p><%= post.title %></p>
- <% } %>
- </a>
- </div>
|