forked from blek/world
1
0
Fork 0
otherworld/templates/base.html

43 lines
1.5 KiB
HTML
Raw Normal View History

2023-12-21 13:26:13 +01:00
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf8'>
<link rel='stylesheet' href='/base.css'>
<link rel='stylesheet' href='/screen.css'>
2024-01-11 02:56:40 +01:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap" rel="stylesheet">
<style>
* { font-family: 'Noto Serif JP' }
</style>
2023-12-21 13:26:13 +01:00
<title>blek! World</title>
</head>
<body>
<div class='screen bg'></div>
<div class='screen content'>
2024-01-21 02:22:28 +01:00
<h1 style='margin-bottom:0'>
2024-01-08 09:03:23 +01:00
<a href='/' class="title-a">blek! World</a>
</h1>
2024-01-21 02:22:28 +01:00
<hr style='margin:0 auto'/>
2023-12-21 13:26:13 +01:00
{% block content %} {% endblock %}
2023-12-22 14:44:59 +01:00
<p style='font-size:80%;text-align:center;margin-top:120px;height:120px'>
2023-12-21 13:26:13 +01:00
Background credit to
<a style='color:gray !important' href="https://tenor.com/view/retro-aesthetic-gif-19478658">
tenor
</a>
</p>
</div>
{% block root %} {% endblock %}
2023-12-21 16:47:10 +01:00
<script src='/script/cursor.min.js' type='application/javascript'></script>
2023-12-22 14:11:29 +01:00
<script>
for(var jsel=document.getElementsByClassName("js-only"),i=0;i<jsel.length;i++){var el=jsel.item(i);null!=el&&(el.className=el.className.replace("js-only",""))}delete jsel,delete i,delete el
</script>
2023-12-21 13:26:13 +01:00
</body>
</html>