Sha256: 54d19260e041cf66f1e297ae918b7b65f14ce0df2538b17eab22107d666650dd
Contents?: true
Size: 655 Bytes
Versions: 54
Compression:
Stored size: 655 Bytes
Contents
<% if true %> <table class="infotab"> <tr> <td class="tabtitle">Name</td> <td class="tabtitle">Population</td> </tr> <% for feature in features do -%> <tr> <td class="tabcell"><%= feature.name %></td> <td class="tabcell"><%= feature.pop_est %></td> </tr> <% end %> </table> <% else %> <table class="infotab"> <tr><td class="tabtitle">Name</td> <% for feature in features do -%> <td class="tabcell"><%= feature.name %></td> <% end %> </tr> <tr><td class="tabtitle">Population</td> <% for feature in features do -%> <td class="tabcell"><%= feature.pop_est %></td> <% end %> </tr> </table> <% end %>
Version data entries
54 entries across 27 versions & 1 rubygems