31 lines
No EOL
794 B
Text
31 lines
No EOL
794 B
Text
<section class="yesNoListView">
|
|
<img src="<%= image %>" alt="<%= alt %>" title="<%= alt %>" width="256" height="128"/>
|
|
<h2><%= title %></h2>
|
|
<p><%= description %></p>
|
|
<ul>
|
|
<% yes.forEach(([ summary, content ]) => { %>
|
|
<li class="yesNoListView_Yes">
|
|
<% if (content) { %>
|
|
<details>
|
|
<summary><%- summary %></summary>
|
|
<p><%- content %></p>
|
|
</details>
|
|
<% } else { %>
|
|
<span><%- summary %></span>
|
|
<% } %>
|
|
</li>
|
|
<% }) %>
|
|
<% no.forEach(([ summary, content ]) => { %>
|
|
<li class="yesNoListView_No">
|
|
<% if (content) { %>
|
|
<details>
|
|
<summary><%- summary %></summary>
|
|
<p><%- content %></p>
|
|
</details>
|
|
<% } else { %>
|
|
<span><%- summary %></span>
|
|
<% } %>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
</section> |