Rinkusu/layouts/404.html

22 lines
674 B
HTML
Raw Normal View History

2021-05-04 10:06:44 +00:00
{{ define "main" }}
{{ partial "navigation.html" . }}
2021-07-20 17:09:00 +00:00
<section class="section" style="background-color: #0f1e31;">
2021-05-04 10:06:44 +00:00
<div class="container">
<div class="row">
<div class="col-12 text-center">
<img src="{{ site.Params.logo | safeURL }}">
2021-09-15 17:34:17 +00:00
<div class="mt-20 mb-20">
<h1 class="bold glitch" data-text="404">404</h1>
<h2>Page Not Found</h2>
<p>Sorry cant find that page :(</p>
</div>
2021-05-04 10:06:44 +00:00
<a class="btn btn-main" href="{{ site.BaseURL | relLangURL }}">Back to home</a>
</div>
</div>
</div>
</section>
{{ end }}