philomena/lib/philomena_web/templates/profile/_about_me.html.heex
2024-06-01 23:50:36 -04:00

12 lines
362 B
Text

<div class="block__content profile-about">
<%= cond do %>
<% @user.description not in [nil, ""] -> %>
<%= @about_me %>
<% current?(@user, @conn.assigns.current_user) -> %>
<em>
Want to
<%= link("add some info about yourself?", to: ~p"/profiles/#{@user}/description/edit") %>
</em>
<% true -> %>
<% end %>
</div>