mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-28 00:54:22 +01:00
18 lines
474 B
HTML
18 lines
474 B
HTML
{{ define "main" }}
|
|
|
|
{{ partial "navigation.html" . }}
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
<img src="{{ site.Params.logo | safeURL }}">
|
|
<h1>404</h1>
|
|
<h2>Page Not Found</h2>
|
|
<a class="btn btn-main" href="{{ site.BaseURL | relLangURL }}">Back to home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ end }}
|