Sha256: a44fc72c59742572751eb9d77b23530906602d768d78b5cb8bea6a0b42f7ac15

Contents?: true

Size: 758 Bytes

Versions: 5

Compression:

Stored size: 758 Bytes

Contents

<h1 class="h2">A-Z</h1>
<nav class="pagination">
  <% ('A'..'Z').each do |letter| %>
    <li><a href="#<%= letter %>"><%= letter %></a></li>
  <% end %>
</nav>
<% @technologies.group_by { |technology| technology.name[0].upcase }.each do |letter,technologies| %>
  <a name="<%= letter %>"></a>
  <h2 class="h3"><%= letter %></h2>
  <% technologies.each do |technology| %>
    <ul class="list-unstyled">
      <li>
        <h1 class="h4">
          <%= link_to technology.name, technology_path(technology.name) %>
          <small>
            <%= technology.purpose %>
            <span class="label label-<%= label_color_for_ring(technology.ring) %>"><%= technology.ring %></span>
          </small>
        </h1>
      </li>
    <% end %>
  </ul>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tech_radar-0.3.0 app/views/tech_radar/technologies/index.html.erb
tech_radar-0.2.1 app/views/tech_radar/technologies/index.html.erb
tech_radar-0.2.0 app/views/tech_radar/technologies/index.html.erb
tech_radar-0.1.0 app/views/tech_radar/technologies/index.html.erb
tech_radar-0.0.1 app/views/tech_radar/technologies/index.html.erb