18 lines
562 B
HTML
18 lines
562 B
HTML
{{ define "main" }}
|
|
<div class="container">
|
|
<div class="row justify-centent-center py-5">
|
|
<div class="display-4 font-weight-bold text-center col p-5">
|
|
404 page not found
|
|
<div class="text-center p-5">
|
|
<a href="{{ .Site.BaseURL }}" class="font-weight-bold btn btn-primary rounded-pill p-3 mb-2">Back to
|
|
our
|
|
site</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="fixed-bottom">
|
|
{{- partial "footer.html" . -}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }} |