mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-26 15:44:24 +01:00
21 lines
674 B
HTML
21 lines
674 B
HTML
{{ define "main" }}
|
|
|
|
{{ partial "navigation.html" . }}
|
|
|
|
<section class="section" style="background-color: #0f1e31;">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
<img src="{{ site.Params.logo | safeURL }}">
|
|
<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>
|
|
<a class="btn btn-main" href="{{ site.BaseURL | relLangURL }}">Back to home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ end }}
|