summaryrefslogtreecommitdiff
path: root/app/views/application/components/text/_title.html.erb
blob: a7c2a7e2cf627924d7adabb78ecaf6f156c59aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<% if title %>
  <% case title.gid %>
  <% when "steward" %>
    <span class="text-gray-200">Steward</span>
  <% when "beryly" %>
    <span class="text-yellow-400">Beryly</span>
  <% when "retributor" %>
    <span class="text-gray-500">Retribut</span><span class="text-yellow-200">o</span><span class="text-gray-500">r</span>
  <% when "aspirant" %>
    <span class="text-purple-200">Aspirant</span>
  <% when "sentinel" %>
    <span class="text-gray-500">S</span><span class="text-gray-400">e</span><span class="text-gray-300">n</span><span class="text-gray-200">ti</span><span class="text-gray-300">n</span><span class="text-gray-400">e</span><span class="text-gray-500">l</span>
  <% else %>
    <%= title.name %>
  <% end %>
<% end %>