17 lines
416 B
Text
17 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>
|