Added basic theme
This commit is contained in:
parent
a085ca6867
commit
8b9afa66ce
42 changed files with 5633 additions and 0 deletions
49
themes/custom/source/404.html
Normal file
49
themes/custom/source/404.html
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="generator" content="Hexo 3.9.0">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<title>Page not found</title>
|
||||
<link rel="stylesheet" href="/css/index.css">
|
||||
<style>
|
||||
error {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
error span {
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
div {
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<error>
|
||||
<div>Page not found!</div>
|
||||
</error>
|
||||
<div id="particles-js"></div>
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/gh/meethigher/cdn@9.0/js/jquery.min.js"></script>
|
||||
<script
|
||||
src="https://cdn.jsdelivr.net/gh/meethigher/cdn@9.0/js/particles.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/gh/meethigher/cdn@9.0/js/app.js"></script>
|
||||
<script>
|
||||
$span = $("span");
|
||||
let i = $span.text();
|
||||
let interval = setInterval(function() {
|
||||
if (i <= 0) {
|
||||
clearInterval(interval);
|
||||
window.location.href = "https://meethigher.top/";
|
||||
} else {
|
||||
i--;
|
||||
$span.text(i);
|
||||
}
|
||||
}, 1000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue