Commit a9faeb58 by Quang Vinh Nguyen

update micropost view page_css tag

parent 2689d50b
<!-- <li id="micropost-<%= micropost.id %>"> -->
<li id="<%= micropost.id %>"> <li id="<%= micropost.id %>">
<%= link_to gravatar_for(micropost.user, size: 50), micropost.user %> <%= link_to gravatar_for(micropost.user, size: 50), micropost.user %>
<span class='user'><%= link_to micropost.user.name, micropost.user %> </span> <span class='user'><%= link_to micropost.user.name, micropost.user %> </span>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<%= render 'follow_form' if logged_in? %> <%= render 'follow_form' if logged_in? %>
<% if @user.microposts.any? %> <% if @user.microposts.any? %>
<h3>Microposts (<%= @user.microposts.count %>)</h3> <h3>Microposts (<%= @user.microposts.count %>)</h3>
<ol class='micropost'> <ol class='microposts'>
<%= render @microposts %> <%= render @microposts %>
</ol> </ol>
<%= will_paginate @microposts %> <%= will_paginate @microposts %>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<div class='col-md-8'> <div class='col-md-8'>
<h3><%= @title %></h3> <h3><%= @title %></h3>
<% if @users.any? %> <% if @users.any? %>
<ul class='user follow'> <ul class='users follow'>
<%= render @users %> <%= render @users %>
</ul> </ul>
<%= will_paginate %> <%= will_paginate %>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment