Skip to content

Instantly share code, notes, and snippets.

@musebe
Created March 8, 2019 10:11
Show Gist options
  • Save musebe/96c19cf35b4256da5dfd4396094853b7 to your computer and use it in GitHub Desktop.
Save musebe/96c19cf35b4256da5dfd4396094853b7 to your computer and use it in GitHub Desktop.
Loop through all files
<div class="d-flex mt-1 pt-3">
<div>
{{#each images.resources}}
<div class='col-sm-4 d-inline-flex pb-4' style='width: auto'>
<div class="card mx-auto">
<img class="card-img-top" src={{url}}
style="object-fit:none; object-position: center; width:300px; height: 300pc; max-height: 300px; max-width: 300px margin-bottom: 1rem;"
alt="home" />
<div class="card-body">
<p class="card-text"><b style='font-weight: 600'>Created On:</b><em style='font-weight: 100'>
{{created_at}}</em></p>
</div>
</div>
</div>
{{else}}
<p>No images listed</p>
{{/each}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment