mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 18:29:03 +00:00
44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
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>
|
|
|
|
<script type="text/html" id="project-quickstart-selector-template">
|
|
<select class='selector'>
|
|
<% _.each(releases, function(release, index) { %>
|
|
<option value="<%= index %>"><%= release.fullName %> (<%= release.statusIconClass() %>)</option>
|
|
<% }); %>
|
|
</select>
|
|
</script>
|
|
|
|
<script type="text/html" id="project-quickstart-maven-widget-template">
|
|
<pre>
|
|
<dependency>
|
|
<groupId><%= groupId %></groupId>
|
|
<artifactId><%= artifactId %></artifactId>
|
|
<version><%= fullName %></version>
|
|
</dependency>
|
|
</pre>
|
|
|
|
</script> |