1
0
Fork 0
This repository has been archived on 2023-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
lesson-decentralized_microb.../app/views/profiles/show.html.erb

12 lines
216 B
Plaintext

<h1><%= @profile.full_name %></h1>
<p><%= @profile.description %></p>
<% if @profile.posts.present? %>
<ul>
<% @profile.posts.each do |post| %>
<li><%= post.text %></li>
<% end %>
</ul>
<% end %>