website_item.html 540 B

12345678910111213141516
  1. <!-- template that displays individual website entries -->
  2. <template name="website_item">
  3. <li>
  4. <a href="{{url}}">{{title}}</a>
  5. <p>
  6. {{description}}
  7. </p>
  8. <a href="#" class="btn btn-default js-upvote">
  9. <span class="glyphicon glyphicon-arrow-up" aria-hidden="true"></span>
  10. </a>
  11. <a href="#" class="btn btn-default js-downvote">
  12. <span class="glyphicon glyphicon-arrow-down" aria-hidden="true"></span>
  13. </a>
  14. <!-- you will be putting your up and down vote buttons in here! -->
  15. </li>
  16. </template>