summaryrefslogtreecommitdiff
path: root/app/views/pokedex/show.html.erb
blob: bcff9320b6be1d846dde9438e940c6732b94974f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="space-y-4">
  <h1>Pokédex</h1>

  <div class="flex flex-wrap gap-4">
    <% Pokemon.where(pokedex_num: 1..151).order(:pokedex_num).each do |pokemon| %>
      <div class="flex flex-col flex-auto items-center w-[100px] bg-orange-200 rounded">
        <div class="flex-1 text-display">No. <%= pokemon.pokedex_num %></div>
        <div class="flex-grow flex flex-col justify-around">
          <%= image_tag "sprites/pokemon/#{pokemon.pokedex_num}.png" %>
        </div>
        <div class="flex-1"><%= pokemon.name %></div>
      </div>
    <% end %>
  </div>
</div>