OSDN Git Service

59fe7f1199d3577077055ef41ceeff5e45ddbaf2
[ring-lang-081/ring.git] / website-obsoleted / downloadlist.template
1  <div id="download" class="panel-group">
2     <div class="panel panel-default">
3       <div class="panel-heading"><h4>Ring 1.11 のダウンロード <span class="badge"><%= len(aDownload) %></span></h4></div>
4       <div class="panel-body">
5
6
7             <% for aGroup in aDownload %>
8
9             <div class="panel panel-primary">
10               <div class="panel-heading"><%= aGroup[1] %> <span class="badge"> <%=len(aGroup[2]) %></span> </div>
11               <div class="panel-body">
12
13                         <table class="table table-striped">
14                                 <thead>
15                                   <tr>
16                                         <th width="80%">説明  </th>
17                                         <th width="20%">ファイル  </th>
18                                   </tr>
19                                 </thead>
20                                 <tbody>
21                                   <% for aItem in aGroup[2]%>
22                                   <tr>
23                                         <% for x in aItem %>
24                                                 <th><%= x %></th>
25                                         <% next %>
26                                         
27                                   </tr>
28                                   <% next %>
29
30                                 </tbody>
31                         </table>
32                                 
33               </div>
34              </div>  
35
36             <% next %>
37
38
39       </div>
40      </div>  
41   </div>