abtmtr-comms/views/components/galleryView.ejs

13 lines
345 B
Text
Raw Normal View History

2024-10-06 07:20:01 +00:00
<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>