11 lines
436 B
HTML
11 lines
436 B
HTML
{{define "article_not_found"}}
|
|
{{template "header" .}}
|
|
<section class="max-w-3xl mx-auto px-4 py-24 text-center">
|
|
<h1 class="text-3xl font-bold text-gray-900 mb-3">{{index .Tr "article_not_found"}}</h1>
|
|
<a href="/" class="inline-block mt-4 bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition-colors">
|
|
{{index .Tr "article_back_home"}}
|
|
</a>
|
|
</section>
|
|
{{template "footer" .}}
|
|
{{end}}
|