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