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

20 lines
406 B
Plaintext

<h1><%= @profile.full_name %></h1>
<p><%= @profile.description %></p>
<% @profile.posts.each do |post| %>
<div class="card mb-4">
<div class="card-body">
<p class="card-text">
<%= post.text %>
</p>
<p class="card-text">
<small class="text-muted">
<%= localize post.created_at, format: :short %>
</small>
</p>
</div>
</div>
<% end %>