views/public/error.ejs
<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>
<main class="error-page">
<section class="section">
<div class="wrap narrow">
<h1>Server error</h1>
<p><%= typeof message !== 'undefined' ? message : 'Something went wrong.' %></p>
<p><a href="/">Return home</a></p>
</div>
</section>
</main>
<%- include('../partials/footer') %>