21 lines
483 B
Plaintext
21 lines
483 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<%- include('../partials/head'); %>
|
|
</head>
|
|
<body>
|
|
<div id='header'>
|
|
<%- include('../headers/site_wide'); %>
|
|
</div>
|
|
|
|
<div id='results'>
|
|
<% search_results.posts.forEach((result, index) => { %>
|
|
<a href="/post/<%- result.id %>"><%- result.title %></a>
|
|
<% }); %>
|
|
<% search_results.users.forEach((result, index) => { %>
|
|
<a href="/user/<%- result.username %>"><%- result.prettyname %></a>
|
|
<% }); %>
|
|
</div>
|
|
</body>
|
|
</html>
|