packages.wenpai.net/internal/http/templates/404.html
elementary 741755ac9b
Some checks failed
ci / GolangCI-Lint (push) Failing after 7m10s
ci / Go Modules Tidy (push) Failing after 5m26s
ci / Go Test (push) Failing after 1h3m11s
ci / Integration Test (push) Failing after 5s
govulncheck / govulncheck (push) Failing after 1s
refactor: mirror-mode cleanups — upstream monthly installs, remove untagged, simplify status
2026-04-12 11:14:17 +08:00

14 lines
No EOL
774 B
HTML

{{template "layout" .}}
{{define "title"}}Page Not Found — WP Packages{{end}}
{{define "meta_seo"}}
<meta name="robots" content="noindex">
{{end}}
{{define "json_ld"}}{{end}}
{{define "og_meta"}}{{end}}
{{define "content"}}
<div class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8 py-24 text-center">
<h1 class="text-4xl font-bold text-gray-900 mb-4">{{if .Gone}}No Longer Available{{else}}Page Not Found{{end}}</h1>
<p class="text-gray-500 mb-8">{{if .Gone}}This page or package has been removed and is no longer available.{{else}}The page you're looking for doesn't exist.{{end}}</p>
<a href="/" class="inline-flex items-center rounded-lg bg-brand-primary px-4 py-2 text-sm font-medium text-white hover:bg-brand-primary/85 transition-colors">Browse packages</a>
</div>
{{end}}