<%= post.title %>
<%= truncate(post.body, length: 140) %>
<%# Conditional rendering %> <% if post.published? %> Published <% else %> Draft <% end %>%# app/views/users/show.html.erb %>
Member since <%= @user.created_at.strftime("%Y") %>
You do not have admin privileges.
<% end %><%= truncate(post.body, length: 140) %>
<%# Conditional rendering %> <% if post.published? %> Published <% else %> Draft <% end %>