abtmtr-comms/views/components/listView.ejs
2024-10-06 02:20:01 -05:00

17 lines
No EOL
357 B
Text

<section class="listView">
<h2><%= title %></h2>
<ul>
<% description.forEach(([ summary, content ]) => { %>
<li>
<% if (content) { %>
<details>
<summary><%- summary %></summary>
<p><%- content %></p>
</details>
<% } else { %>
<span><%- summary %></span>
<% } %>
</li>
<% }) %>
</ul>
</section>