aboutsummaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2019-04-18 00:32:54 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2019-04-18 00:32:54 -0500
commit85da8c51668610aa3ca45541f07aff71c93f7cd7 (patch)
tree1ece0e9dbdd905b573c9595b04c11dcec4998f2d /views
parent81ae368990b352946a3c30a53ee9fdab6d5e6334 (diff)
Add a list group and list group item class for each member with name and email.
Diffstat (limited to 'views')
-rw-r--r--views/index.handlebars6
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>