Files
spring-boot/_includes/widget_template.html
T

26 lines
745 B
HTML

<script type="text/html" id="project-documentation-widget-template">
<h3><%= name %></h3>
<table>
<thead>
<tr>
<th>Release</th>
<th>Documentation</th>
</tr>
</thead>
<tbody>
<% _.each(releases, function(release) { %>
<tr>
<td>
<%= release.fullName %>
<i class="<%= release.statusIconClass() %>"></i>
</td>
<td>
<a href='<%= release.refDocUrl %>'>Reference</a>
<a href='<%= release.apiDocUrl %>'>API</a>
</td>
</tr>
<% }); %>
</tbody>
</table>
</script>