available_user_list.html 213 B

123456789
  1. <!-- display a list of users -->
  2. <template name="available_user_list">
  3. <h2>Choose someone to chat with:</h2>
  4. <div class="row">
  5. {{#each users}}
  6. {{> available_user}}
  7. {{/each}}
  8. </div>
  9. </template>