siteace.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <head>
  2. <title>siteace</title>
  3. </head>
  4. <body>
  5. <!-- navbar - you will be putting the login functions here -->
  6. <nav class="navbar navbar-default">
  7. <div class="container-fluid">
  8. <div class="navbar-header">
  9. <a class="navbar-brand" href="#">
  10. Site Ace
  11. </a>
  12. </div>
  13. </div>
  14. </nav>
  15. <div class="container">
  16. {{> website_form}}
  17. {{> website_list}}
  18. </div>
  19. </body>
  20. <template name="website_form">
  21. <a class="btn btn-default js-toggle-website-form" href="#">
  22. <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
  23. </a>
  24. <div id="website_form" class="hidden_div">
  25. <form class="js-save-website-form">
  26. <div class="form-group">
  27. <label for="url">Site address</label>
  28. <input type="text" class="form-control" id="url" placeholder="http://www.mysite.com">
  29. </div>
  30. <div class="form-group">
  31. <label for="title">Title</label>
  32. <input type="text" class="form-control" id="title" placeholder="Mysite">
  33. </div>
  34. <div class="form-group">
  35. <label for="description">Description</label>
  36. <input type="text" class="form-control" id="description" placeholder="I found this site really useful for ...">
  37. </div>
  38. <button type="submit" class="btn btn-default">Submit</button>
  39. </form>
  40. </div>
  41. </template>
  42. <!-- template that displays several website items -->
  43. <template name="website_list">
  44. <ol>
  45. {{#each websites}}
  46. {{>website_item}}
  47. {{/each}}
  48. </ol>
  49. </template>
  50. <!-- template that displays individual website entries -->
  51. <template name="website_item">
  52. <li>
  53. <a href="{{url}}">{{title}}</a>
  54. <p>
  55. {{description}}
  56. </p>
  57. <a href="#" class="btn btn-default js-upvote">
  58. <span class="glyphicon glyphicon-arrow-up" aria-hidden="true"></span>
  59. </a>
  60. <a href="#" class="btn btn-default js-downvote">
  61. <span class="glyphicon glyphicon-arrow-down" aria-hidden="true"></span>
  62. </a>
  63. <!-- you will be putting your up and down vote buttons in here! -->
  64. </li>
  65. </template>