← back to Stars of Design

views/public/404.ejs

12 lines

<%- include('../partials/head', { title }) %>
<%- include('../partials/header') %>
<main class="error-page">
  <section class="section">
    <div class="wrap narrow">
      <h1>Not found</h1>
      <p>The page you tried to reach is not in the directory. Try the <a href="/designers">full designer index</a> or <a href="/">the homepage</a>.</p>
    </div>
  </section>
</main>
<%- include('../partials/footer') %>