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
408 B
Plaintext
Raw Normal View History

2021-03-10 09:40:17 +00:00
<h1><%= @profile.full_name %></h1>
<p><%= @profile.description %></p>
2021-03-10 10:13:44 +00:00
<% @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">
2021-03-10 10:18:57 +00:00
<%= localize post.published_at, format: :short %>
2021-03-10 10:13:44 +00:00
</small>
</p>
</div>
</div>
2021-03-10 09:40:17 +00:00
<% end %>