mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 02:09:05 +00:00
26 lines
745 B
HTML
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>
|