Skip to content
Merged
Show file tree
Hide file tree
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: 8 additions & 2 deletions i18n/en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,14 @@ other = "Donate with PayPal button"
[paypal_donate_title]
other = "Donate with PayPal"

[not_found]
other = "That page doesn't exist, please check the address."
[not_found_title]
other = "404 - Page Not Found"

[not_found_message]
other = "The page you're looking for doesn't exist or has been moved."

[not_found_button]
other = "Return to Homepage"

[amount_per_year]
# Ex. $10.000/yr (USD)
Expand Down
9 changes: 9 additions & 0 deletions themes/le-2025/layouts/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{ define "main" }}
<section class="section-padding">
<div class="narrow-container mx-auto text-center py-16">
<h1 class="text-4xl font-bold mb-6">{{ T "not_found_title" }}</h1>
<p class="text-lg text-gray-600 mb-8">{{ T "not_found_message" }}</p>
<a href="/" class="btn btn-primary">{{ T "not_found_button" }}</a>
</div>
</section>
{{ end }}