mirror of https://gitlab.com/curben/blog
12 lines
371 B
Plaintext
12 lines
371 B
Plaintext
<% if (post.photos && post.photos.length) { %>
|
|
<div class="article-gallery">
|
|
<div class="article-gallery-photos">
|
|
<% post.photos.forEach(function(photo, i) { %>
|
|
<a class="article-gallery-img" href="<%- url_for(photo) %>" rel="gallery_<%= post._id %>">
|
|
<img src="<%- url_for(photo) %>" itemprop="image">
|
|
</a>
|
|
<% }) %>
|
|
</div>
|
|
</div>
|
|
<% } %>
|