-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Sevilleja
committed
Mar 3, 2015
1 parent
d134b81
commit 4a6c63a
Showing
5 changed files
with
39 additions
and
47 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<% include ../partials/head %> | ||
<% include ../partials/head %> | ||
</head> | ||
<body class="container"> | ||
|
||
<header> | ||
<div class="jumbotron text-center"> | ||
This is a demo for a <a href="https://scotch.io">Scotch.io</a> tutorial. | ||
</div> | ||
<% include ../partials/header %> | ||
</header> | ||
<header> | ||
<div class="jumbotron text-center"> | ||
This is a demo for a <a href="https://scotch.io">Scotch.io</a> tutorial. | ||
</div> | ||
<% include ../partials/header %> | ||
</header> | ||
|
||
<main> | ||
<div class="row"> | ||
<% grams.forEach(function(gram) { %> | ||
<div class="instagram-pic col-sm-3"> | ||
<main> | ||
<div class="row"> | ||
<% grams.forEach(function(gram) { %> | ||
<div class="instagram-pic col-sm-3"> | ||
<a href="<%= gram.link %>" target="_blank"> | ||
<img src="<%= gram.images.standard_resolution.url %>" class="img-responsive"> | ||
</a> | ||
<a href="<%= gram.link %>" target="_blank"> | ||
<img src="<%= gram.images.standard_resolution.url %>" class="img-responsive"> | ||
</a> | ||
<div class="instagram-bar"> | ||
<div class="likes"> | ||
<span class="glyphicon glyphicon-heart"></span> <%= gram.likes.count %> | ||
</div> | ||
<div class="comments"> | ||
<span class="glyphicon glyphicon-comment"></span> <%= gram.comments.count %> | ||
</div> | ||
</div> | ||
<div class="instagram-bar"> | ||
<div class="likes"> | ||
<span class="glyphicon glyphicon-heart"></span> <%= gram.likes.count %> | ||
</div> | ||
</div> | ||
<% }); %> | ||
</div> | ||
</main> | ||
<div class="comments"> | ||
<span class="glyphicon glyphicon-comment"></span> <%= gram.comments.count %> | ||
</div> | ||
</div> | ||
<footer> | ||
<% include ../partials/footer %> | ||
</footer> | ||
|
||
</div> | ||
<% }); %> | ||
</div> | ||
</main> | ||
|
||
<footer> | ||
<% include ../partials/footer %> | ||
</footer> | ||
|
||
</body> | ||
</html> |