Created
November 12, 2012 13:24
-
-
Save ahmdrefat/4059372 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="span4"> | |
<div class="thumbnail"> | |
<img src="<%= current_user.profile_image_url %>" style="float: left;margin: 5px;"> | |
<h3><%= current_user.name %></h3> | |
<h4><%= current_user.location %></h4> | |
<br> | |
<p><%= current_user.description %></p> | |
</div> | |
</div> | |
</div> | |
<div class="row" style="margin-top: 16px;"> | |
<div class="span5"> | |
<h1>User Timeline</h1> | |
<table class="table table-striped"> | |
<tr> | |
<th>Text</th> | |
</tr> | |
<% @user_timeline.each do |t| %> | |
<tr> | |
<th><%= t.text %></th> | |
</tr> | |
<% end %> | |
</table> | |
</div> | |
<div class="span5"> | |
<h1>Home Timeline</h1> | |
<table class="table table-striped"> | |
<tr> | |
<th>User Name</th> | |
<th>Profile Image</th> | |
<th>Text</th> | |
</tr> | |
<% @home_timeline.each do |t| %> | |
<tr> | |
<th><%= t.user.name %></th> | |
<th><img src="<%= t.user.profile_image_url %>" /></th> | |
<th><%= t.text %></th> | |
</tr> | |
<% end %> | |
</table> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment