al13ntown/app/views/profiles/show.html.erb
2026-08-24 20:12:41 +00:00

16 lines
416 B
Text

<% if current_user %>
<%= link_to "Edit", edit_profile_path %>
<% end %>
<section class="profile">
<br>
<hr>
<h1 class="h1bio"><%= @profile.name %></h1>
<br>
<center><%= image_tag @profile.avatar_image if @profile.avatar_image.attached? %>
</center><li>Pronouns: <%= @profile.pronouns %></li>
<li>Age: <%= @profile.age %></li>
<h2><i>about the creature</i></h2>
<%= @profile.bio %>
</section>