This repository has been archived on 2023-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
media-host/views/pages/404.ejs
2023-05-12 00:32:13 -04:00

25 lines
754 B
Text

<!DOCTYPE html>
<html>
<head>
<title>404 - <%- config["meta"]["name"] %></title>
<meta property="og:site_name" content="<%= config.meta.name %>">
<meta name="title" content="404 Not Found">
<meta property="og:title" content="404 Not Found">
<meta property="twitter:title" content="404 Not Found">
<meta property="og:type" content="website">
<%- include("../partial/html-head")%>
</head>
<body>
<%- include("../partial/header") %>
<div class="modal">
<% if (config.alert) { %>
<div class="err"><p><%-config.alert%></p></div>
<% } %>
<h2 class="nm">404</h2>
<p class="nm">This file does not exist.</p>
</div>
<%- include("../partial/footer") %>
</body>
</html>