feedless/app/views/search.ejs

16 lines
460 B
Plaintext
Raw Normal View History

2020-04-05 14:51:25 +02:00
<%- include('_header') %>
2020-04-20 21:57:00 +02:00
<% if (query.length < 3) { %>
<h2>You need to search for 3 or more characters</h2>
<% } else { %>
<h2>Results for "<%= query %>"</h2>
2020-04-05 14:51:25 +02:00
<% people.map(person => { %>
2020-04-20 21:57:00 +02:00
<a class="link-block" href="<%= profileUrl(person.author) %>">
<img class="link-profile-pic" src="<%= profileImageUrl(person.authorProfile) %>" />
<div><%= person.content.name %></div>
2020-04-05 20:11:55 +02:00
</a>
2020-04-05 14:51:25 +02:00
<% }) %>
2020-04-20 21:57:00 +02:00
<% } %>
2020-04-05 14:51:25 +02:00
<%- include('_footer') %>