13 lines
No EOL
345 B
Text
13 lines
No EOL
345 B
Text
<section class="galleryView">
|
|
<h2><%= title %></h2>
|
|
<ul>
|
|
<% images.forEach(([ img, desc, url ]) => { %>
|
|
<li>
|
|
<figure>
|
|
<img class="screen" src="<%= img %>" alt="<%= desc %>" title="<%= desc %>" />
|
|
<figcaption><a href="<%= url %>"><%= desc %></a></figcaption>
|
|
</figure>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
</section> |