diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/index.handlebars | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/views/index.handlebars b/views/index.handlebars index 46432e8..1b430da 100644 --- a/views/index.handlebars +++ b/views/index.handlebars @@ -1 +1,7 @@ <h1 class="text-center mb-3">{{title}}</h1> +<h4>Members</h4> +<ul class="list-group"> + {{#each members}} + <li class="list-group-item">{{this.name}}: {{this.email}}</li> + {{/each}} +</ul> |