diff options
| -rw-r--r-- | views/user_search.hbs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/user_search.hbs b/views/user_search.hbs new file mode 100644 index 0000000..fd08e84 --- /dev/null +++ b/views/user_search.hbs @@ -0,0 +1,19 @@ +<main id = 'solutions-main'> +<div class = 'search container' id = 'solutions-div'> + <h4 class='search-head'>Search results for "{{query}}"</h4> + {{# if users }} + {{# each users}} + <a href="/public_profile/{{this._id}}"> + <section class = 'solutions-card'> + <h3 class = 'solutions-title'>{{this.user_name}}</h3> + <p class = 'solutions-time' > + <em>Name: </em>{{this.f_name}} {{this.l_name}} </p> + </p> + </section> + </a> + {{/each}} + {{ else }} + <h3 class="solutions-title"> No results found. Sorry!</h3> + {{/if}} +</div> +</main> |
