Skip to content

Instantly share code, notes, and snippets.

@mateocain
Created October 17, 2017 05:48
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
cosmic band site album - for article
{{!-- views/album.handlebars --}}
{{> header}}
<div class="body">
<div class="album-wrapper">
<h1>{{album.title}}</h1>
<h4>{{formatDate album.metadata.date}}</h4>
<div class="album-body">
{{#each photos}}
<div class="photo">
<a href="{{this.photo.url}}"><img height="200" src="{{this.photo.url}}" /></a>
</div>
{{/each}}
</div>
</div>
{{> footer}}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment