Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions templates/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!--<% if (false) { %>
Copyright 2022 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
<% } %> <license header> -->

<!-- //////////////////////////////////////////////////////
This is a custom 404 page for the <%= projectName %> app.
It is displayed when a user navigates to a page that does not exist.
Customize to your liking.
////////////////////////////////////////////////////// -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="theme-color" content="#333333">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><%= projectName %></title>
<style>body {
margin: 20px;
padding: 20px;
}
</style>
</head>
<body>
<h1>Error: 404 Page not found.</h1>
<p>The page you are looking for could not be found.</p>
<p>Please check the URL and try again.</p>
<p>Return to the <a href="/">home page</a>.</p>
</body>
</html>