123456789101112131415161718 |
- <!-- template that displays individual website entries -->
- <template name="website_item">
- <li>
- <a href="{{url}}">{{title}}</a>
- <p>
- {{description}}
- </p>
- {{#if isLoggedIn }}
- <a href="#" class="btn btn-default js-upvote {{ upVoted }}">
- <span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span>
- </a>
- <a href="#" class="btn btn-default js-downvote {{ downVoted }}">
- <span class="glyphicon glyphicon-minus-sign" aria-hidden="true"></span>
- </a>
- <!-- you will be putting your up and down vote buttons in here! -->
- {{/if}}
- </li>
- </template>
|