Skip to content

Instantly share code, notes, and snippets.

@LukeXF
Created March 20, 2018 19:48
Show Gist options
  • Save LukeXF/8db296b3c694e2056681aae7e91f3c50 to your computer and use it in GitHub Desktop.
Save LukeXF/8db296b3c694e2056681aae7e91f3c50 to your computer and use it in GitHub Desktop.
recent boats
<h3>Recently Added Boats</h3>
<h6 class="hidden-sm-up swipe-to-see-more">Swipe to see more</h6>
<div class="owl-carousel owl-theme">
{{#each config.homePageBoats}}
<div class="item">
<a href="listing/{{this.uniqueId}}">
<div class="feature">
<div class="img-place"
style="background: url({{ ../config.photoUrl }}../{{this.photos.[0]}}) center; background-size: cover"></div>
<div class="text">
<b class="name">{{ dotdotdot this.name 20 }} ・ {{ this.make }}</b><br>
<span class="location"><i class="btl bt-map-marker"></i> <i>{{ dotdotdot
this.location.overview 5}}</i> ・ </span>
<span class="location"><i class="btl bt-user"></i> <i>{{ this.amenities.sleeps }} (${{math
this.price "/" this.amenities.sleeps}} pp)</i></span>
<!--<span class="location"> ・ <i class="btl bt-clock"></i> <i>3 Hours</i></span><br>--><br>
<i class="btl bt-star star-good"></i>
<i class="btl bt-star star-good"></i>
<i class="btl bt-star star-good"></i>
<i class="btl bt-star star-good"></i>
<i class="btl bt-star star-good"></i>
<!--<b class="ratings">0</b>-->
<b class="ratings">NEW BOAT!</b>
<!--<div class="float-right">${{this.price}}</div>-->
<div class="float-right">${{this.priceFormatted}}</div>
</div>
</div>
</a>
</div>
{{/each}}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment