44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
|
|
<head>
|
|
{{ partial "headers.html" . }}
|
|
{{ partial "custom_headers.html" . }}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="all">
|
|
|
|
{{ partial "top.html" . }}
|
|
|
|
{{ partial "nav.html" . }}
|
|
|
|
<div id="content">
|
|
<div class="container">
|
|
|
|
<div class="col-sm-6 col-sm-offset-3" id="error-page">
|
|
|
|
<div class="box">
|
|
|
|
<h3>{{ i18n "404Message" | markdownify }}</h3>
|
|
<h4 class="text-muted">{{ i18n "404Error" | markdownify }}</h4>
|
|
|
|
<p class="buttons"><a href="{{ "/" | relURL }}" class="btn btn-template-main"><i class="fas fa-home"></i> {{ i18n "404NavHome" | markdownify }}</a>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<!-- /.col-sm-6 -->
|
|
</div>
|
|
<!-- /.container -->
|
|
</div>
|
|
<!-- /#content -->
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|