mirror of
https://github.com/cjdenio/trax-accidents.git
synced 2026-08-05 02:46:34 +00:00
32 lines
1.2 KiB
Handlebars
32 lines
1.2 KiB
Handlebars
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>IT HAS BEEN {{ daysSince }} DAYS SINCE A CAR HIT A UTA TRAIN</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
<body class="py-10">
|
|
<div
|
|
class="max-w-96 bg-blue-950 text-white mx-auto rounded-lg p-8 space-y-4 mb-10"
|
|
>
|
|
<p class="text-center text-4xl">IT HAS BEEN</p>
|
|
<div
|
|
class="bg-white text-black text-9xl w-fit mx-auto p-4 rounded-lg"
|
|
>
|
|
{{ daysSince }}
|
|
</div>
|
|
<p class="text-center text-5xl">DAYS</p>
|
|
<p class="text-center text-2xl">
|
|
SINCE A CAR HIT A
|
|
<img src="/uta-logo.svg" alt="UTA logo" class="w-32 mx-auto" />
|
|
TRAIN
|
|
</p>
|
|
</div>
|
|
|
|
<div class="max-w-96 mx-auto font-sans overflow-hidden">
|
|
<div class="bg-gray-200 border border-gray-500 rounded-t-lg px-2">{{ latestCollision.formattedDate }}</div>
|
|
<pre class="font-sans text-wrap border border-gray-500 border-t-0 rounded-b-lg p-2">{{ latestCollision.content }}</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|