mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 22:14:22 +01:00
19 lines
474 B
HTML
19 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 }}
|