<%- include('_header') %> <% if (query.length < 3) { %>

You need to search for 3 or more characters

<% } else { %>

Results for "<%= query %>"

People

<% if (people.length == 0) { %>

No results found

<% } %> <% people.map(person => { %>
<%= person.content.name %>
<% }) %>

Communities

<% if (communities.length == 0) { %>

No results found

<% } %> <% communities.map(community => { %> #<%= community %> <% }) %> <% } %> <%- include('_footer') %>