NotFoundPage
DomainFull-page 404 screen with a gradient "404" heading, icon slot, title, description, and home/back action buttons.
<%- include('modules/domain/common/NotFoundPage') %>
<%- include('modules/domain/common/NotFoundPage', {
title: 'Nothing here yet',
description: 'This section is under construction. Check back soon.',
homeLabel: 'Return home',
backLabel: 'Previous page'
}) %>
<%
var _title = locals.title || 'Page Not Found';
var _description = locals.description || 'The page you\'re looking for has been removed, moved, or never existed.';
var _homeHref = locals.homeHref || '/';
var _homeLabel = locals.homeLabel || 'Go Home';
var _backLabel = locals.backLabel || 'Go Back';
%>