Guest User

Untitled

a guest
Jan 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>${account.twitter_screen_name} | upgrouper</title>
  5. <link rel="stylesheet" type="text/css" href="${cssurl}">
  6. <script src="${jsurl}"></script>
  7. </head>
  8. <body>
  9.  
  10. <h1>@${account.twitter_screen_name}</h1>
  11.  
  12. <div class="groupings">
  13. {{each(i, grouping) groupings}}
  14.  
  15. <h2>${grouping.name}</h2>
  16. <ul>
  17. {{each(i, image) images}}
  18. <li><a href="${image.url}"><img
  19. src="${image.previews.size128W.url}"
  20. width="${image.previews.size128W.width}"
  21. height="${image.previews.size128W.height}"
  22. ></a></li>
  23. {{/each}}
  24. </ul>
  25.  
  26. {{/each}}
  27. </div>
  28.  
  29. </body>
  30. </html>
Add Comment
Please, Sign In to add comment