spee.ch/views/partials/memeResults.handlebars
2017-06-21 09:14:53 -07:00

25 lines
No EOL
866 B
Handlebars

<div class="col-md-12">
<div class="card" id="publish">
<div class="card-title card-block grey lighten-1 white-text">
<h2>Recent Meme Fodder</h2>
</div>
<div class="card-block" id="publish-active-area">
<div class="row">
<div class="col-md-12">
<p>Below are some of the most recent images that have been fuel for our enjoyment on /meme-fodder</p>
</div>
</div>
<div class="row">
{{#each claims}}
<div class="col-md-3">
<a href="/{{this.name}}/{{this.claim_id}}">
<img class="all-claims-img" src="/{{this.name}}/{{this.claim_id}}" /></a>
</div>
<hr>
{{/each}}
</div>
<p>(ideally I'd like to display what users have submitted here)</p>
<p>(maybe a voting system? Is there a way to allow people to donate funds to a claimId so that it will show up higher in the results?)</p>
</div>
</div>
</div>