blob: a2fe54e29e607d3a2a43c2496dd6fa295ba3e0de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active"><%= t :architectures %></li>
</ol>
<h1><%= t :architectures %></h1>
<p><%= t :arches_intro %></p>
<div class="card">
<div class="card-header">
<h4 class="mb-0"><%= t :architectures %></h4>
</div>
<div class="table-responsive">
<table class="table table-striped mb-0">
<col>
<col style="width: 20em;">
<col style="width: 20em;">
<tbody>
<% ::KKULEOMI_ARCHES.sort.each do |arch| %>
<tr>
<th class="kk-nobreak-cell"><%= arch %></th>
<td>
<%= link_to t(:keyworded_packages), keyworded_arch_path(id: arch) %>
<%= feed_icon keyworded_arch_path(id: arch, format: :atom) %>
</td>
<td>
<%= link_to t(:stable_packages), stable_arch_path(id: arch) %>
<%= feed_icon stable_arch_path(id: arch, format: :atom) %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
|