Skip to content
Draft
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
10 changes: 10 additions & 0 deletions themes/wc-eh-docs/layouts/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@
<h1 id='{{ if .Params.url }}{{ replace .Params.url ".md" ""}}{{ end }}'>{{ $.Site.Title }}</h1>

</div>
<div class="error-404 text-center py-5">
<h2 class="display-1 fw-bold text-primary">404</h2>
<h3 class="mb-4">Page Not Found</h3>
<p class="lead mb-4">Sorry, the page you are looking for could not be found.</p>
<p class="mb-4">The page may have been moved, deleted, or the URL may be incorrect.</p>
<div class="d-flex justify-content-center">
<a href="{{ $.Site.BaseURL }}" class="btn btn-primary me-3">Go to Home</a>
<button onclick="history.back()" class="btn btn-outline-secondary">Go Back</button>
</div>
</div>
{{ .Content }}
{{ partial "footer-call-to-action.html" . }}
</main>
Expand Down