2020-01-31 15:53:04 +01:00
|
|
|
{{- define "title" }}
|
2020-05-18 10:10:24 +02:00
|
|
|
{{- T "pageNotFound" | printf "404 %v" }} - {{ .Site.Title -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-22 20:01:22 +02:00
|
|
|
|
2020-01-31 11:46:28 +01:00
|
|
|
{{- define "content" -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
<div class="page" id="content-404">
|
2020-02-03 11:38:10 +01:00
|
|
|
<h1 id="error-emoji"></h1>
|
2020-01-31 11:46:28 +01:00
|
|
|
<p class="error-text">
|
2020-02-02 11:18:06 +01:00
|
|
|
{{- T "pageNotFoundText" -}}
|
2022-05-06 19:54:31 +02:00
|
|
|
<a href="javascript:void(0);" title="{{ T `back` }}" onclick="window.history.back();"><i class="far fa-hand-point-left fa-fw" aria-hidden="true"></i></a>
|
2020-01-31 11:46:28 +01:00
|
|
|
</p>
|
2019-08-02 10:16:59 +02:00
|
|
|
</div>
|
2020-04-15 09:46:50 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
(function() {
|
2020-04-26 17:00:29 +02:00
|
|
|
var emojiArray = ['\\(o_o)/', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)','(=\'X\'=)', '(>_<)', '(;-;)'];
|
2020-04-15 09:46:50 +02:00
|
|
|
document.getElementById('error-emoji').appendChild(document.createTextNode(emojiArray[Math.floor(Math.random() * emojiArray.length)]));
|
|
|
|
})();
|
2019-08-02 10:16:59 +02:00
|
|
|
</script>
|
2020-02-06 17:10:00 +01:00
|
|
|
{{- end -}}
|