refactor from disgusting monolith

This commit is contained in:
2026-01-24 17:20:00 -05:00
parent 22c6c01007
commit b4728e3dde
12 changed files with 390 additions and 165 deletions

25
templates/index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Are We Buried?</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
</head>
<body>
<div class="snowfall" id="snowfall"></div>
<div class="snow-wrapper" id="snowWrapper">
<svg viewBox="0 0 100 20" preserveAspectRatio="none">
<path d="M0 10 Q 15 2 30 10 T 60 10 T 100 10 L 100 20 L 0 20 Z" fill="#ffffff"/>
</svg>
<div class="snow-body"></div>
</div>
<div class="container">
<h1>Are We Buried?</h1>
<div class="amount" id="amount">-- in</div>
<div class="meta" id="meta">--</div>
<div class="meta" id="updated">Last updated: --</div>
</div>
<script src="{{ url_for('static', filename='main.js') }}"></script>
</body>
</html>