Graphische Datenverarbeitung
<% htmlWebpackPlugin.options.exercises.forEach((exercise) => { %>
<% if (exercise['exists'] === true) { %>
<%= exercise['title'] %>
<% } else { %>
<%= exercise['title'] %>
<% } %>
<% exercise['entries'].forEach((entry) => { %> <% if (entry['exists'] === true) { %>
<% } else { %>
class="list-group-item list-group-item-action flex-column align-items-start">
<%= entry['title'] %>
<%= entry['description'] %>
<% }); %>
<% }); %>