blob: 675c5186221d51a4088fc30c5e6469474460d6df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<h1 class="text-3xl mb-2"><%= @item.name %></h1>
<p class="italic"><%= @item.description %></p>
<div class="my-6">
<h2 class="text-xl">Game Data</h2>
<p>GID: <span class="text-code"><%= @item.gid %></span></p>
<% if @item.whatnot %>
<div class="text-code my-2"><%= JSON.pretty_generate(@item.whatnot) %></div>
<% else %>
<p>Item has no additional data.</p>
<% end %>
</div>
|