chill_hugoplate/layouts/404.html

27 lines
788 B
HTML
Raw Normal View History

2023-05-25 10:41:54 +00:00
{{ define "main" }}
<section class="section-sm text-center">
<div class="container">
<div class="row justify-center">
<div class="sm:col-10 md:col-8 lg:col-6">
<span
2023-07-30 03:40:21 +00:00
class="text-[8rem] block font-bold text-dark dark:text-darkmode-dark">
404
</span>
<h1 class="h2 mb-4">Page not found</h1>
<div class="content">
2023-07-30 03:47:01 +00:00
<p>
The page you are looking for might have been removed, had its name
changed, or is temporarily unavailable.
</p>
2023-05-25 10:41:54 +00:00
</div>
<a
href="{{ site.BaseURL | relLangURL }}"
class="btn btn-primary mt-8">
Back to home
</a>
2023-05-25 10:41:54 +00:00
</div>
</div>
</div>
</section>
2023-05-25 10:41:54 +00:00
{{ end }}