Skip to content

Instantly share code, notes, and snippets.

@mateocain
Created October 17, 2017 05:44
  • 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 home page - for article
{{!-- views/index.handlebars --}}
{{> header}}
<div class="body">
<div class="banner-image-container" style="background-image: url({{homepage.banner_image.url}})">
<section class="cta">
<a href="/tour">Tour Dates</a>
<a href="/photo-gallery">Gallery</a>
</section>
</div>
<div class="content-wrapper">
<div class="box tour-dates">
<h1>Upcoming Shows</h1>
<div>
{{#each tourDates}}
<div class="tour-date">
<span>
<span class="bold">
{{this.title}} -
</span>
{{this.metadata.location}}
</span>
<span class="date">
{{formatDate this.metadata.date}}
</span>
<div class="ticket-button">
<a href="{{this.metadata.ticket_link}}">Get Tickets <i class="fa fa-long-arrow-right"></i></a>
</div>
</div>
{{/each}}
</div>
</div>
<div class="box">
<h1>Bio</h1>
<div class="bio">
{{truncateText settings.bio 70}}
<a href="/bio">Read More</a>
</div>
</div>
</div>
{{> footer}}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment