mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 02:46:16 +01:00
22 lines
No EOL
838 B
HTML
22 lines
No EOL
838 B
HTML
{{- define "title" }}
|
|
{{- T "pageNotFound" | printf "404 %s" }} | {{ .Site.Title -}}
|
|
{{- end -}}
|
|
|
|
{{- define "content" -}}
|
|
<div class="notfound">
|
|
<h1 id="error-emoji"></h1>
|
|
<p class="error-text">
|
|
{{- T "pageNotFoundText" -}}
|
|
<a href="{{ .Site.BaseURL }}" title="{{ T "backToHome" }}">↩︎</a>
|
|
</p>
|
|
</div>
|
|
<script>
|
|
const emojiArray = [
|
|
'\\(o_o)/', '(o^^)o', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)',
|
|
'(=\'X\'=)', '(>_<)', '(;-;)', '\\(^Д^)/',
|
|
];
|
|
const errorEmoji = emojiArray[Math.floor(Math.random() * emojiArray.length)];
|
|
const errorEmojiContainer = document.getElementById('error-emoji');
|
|
errorEmojiContainer.appendChild(document.createTextNode(errorEmoji));
|
|
</script>
|
|
{{- end -}} |