opengist/templates/pages/error.html

15 lines
790 B
HTML
Raw Normal View History

2023-03-14 15:22:52 +00:00
{{ template "header" .}}
<div class="mt-4">
2023-05-27 11:58:08 +00:00
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="h-12 w-12 text-slate-600 dark:text-slate-400">
2023-03-14 15:22:52 +00:00
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z" />
</svg>
2023-09-22 15:26:09 +00:00
<h1 class="mt-2 text-3xl font-medium text-slate-700 dark:text-slate-300">{{ .locale.Tr "error" }} {{ .error.Code }}</h1>
2023-05-27 11:58:08 +00:00
<h3 class="mt-2 text-md font-medium text-slate-700 dark:text-slate-300">{{ httpStatusText .error.Code }}</h3>
2023-03-14 15:22:52 +00:00
{{ if lt .error.Code 500 }}
2023-05-27 11:58:08 +00:00
<p class="mt-2 text-sm font-medium text-slate-700 dark:text-slate-300">{{ .error.Message }}</p>
2023-03-14 15:22:52 +00:00
{{ end }}
</div>
{{ template "footer" .}}