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

34 lines
1.1 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'>
<title>blek! World</title>
</head>
<body>
<div class='screen bg'></div>
<div class='screen content'>
2024-01-08 09:03:23 +01:00
<h1 style='margin-bottom:0.25em'>
<a href='/' class="title-a">blek! World</a>
</h1>
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>
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>