-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathindex.erb
More file actions
30 lines (30 loc) · 1 KB
/
index.erb
File metadata and controls
30 lines (30 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<header>
<h1>Finstagram</h1>
</header>
<main role="main">
<% @finstagram_posts.each do |finstagram_post| %>
<article class="finstagram-post">
<div class="user-info">
<img src="<%= finstagram_post.user.avatar_url %>" alt="<%= finstagram_post.user.username %>">
<h2><%= finstagram_post.user.username %></h2>
<h3><%= finstagram_post.humanized_time_ago %></h3>
</div>
<a class="photo" href="#">
<img src="<%= finstagram_post.photo_url %>" alt="finstagram post from <%= finstagram_post.user.username %>">
</a>
<div class="actions">
<%= finstagram_post.like_count %> likes
<span class="comment-count"><%= finstagram_post.comment_count %> comments</span>
</div>
<ul class="comments">
<% finstagram_post.comments.each do |comment| %>
<li>
<p>
<%= comment.user.username %>: <%= comment.text %>
</p>
</li>
<% end %>
</ul>
</article>
<% end %>
</main>