website_list.html 181 B

12345678
  1. <!-- template that displays several website items -->
  2. <template name="website_list">
  3. <ol class="list-group">
  4. {{#each websites}}
  5. {{>website_item}}
  6. {{/each}}
  7. </ol>
  8. </template>