summaryrefslogtreecommitdiff
path: root/app/views/application/components/text/_title.html.erb
blob: 2576ff810f6f926ea4f30fd30a5a8d01d59dff6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<% 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>
  <% else %>
    <%= title.name %>
  <% end %>
<% end %>