Created the rest of the pages and proofread. Staging for production

This commit is contained in:
Joshua L3
2025-06-21 02:39:33 -06:00
parent 9d84adef81
commit 22f919dc7b
8 changed files with 387 additions and 42 deletions

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Net Check-Ins BYUIARS</title>
<title>Net Check-Ins BYU-I Amateur Radio Society</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
@@ -35,7 +35,7 @@
<!-- Navbar -->
<nav class="accent-bg text-white px-4 py-3 shadow-md" x-data="{ open: false }">
<div class="flex flex-wrap items-center justify-between">
<a href="/" class="text-xl font-semibold mr-4">BYUIARS</a>
<a href="/" class="text-xl font-semibold mr-4">BYU-I Amateur Radio Society</a>
<button @click="open = !open" class="sm:hidden text-white ml-auto focus:outline-none">
<svg x-show="!open" xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
@@ -76,8 +76,21 @@
<main class="flex-grow p-6">
<h1 class="text-3xl font-bold mb-4">Weekly Net Check-Ins</h1>
<p>Our net meets each Tuesday at 8pm on the 146.510 repeater, which has a -6MHz offset and a bidirectional 100Hz tone. We'd love to hear you!</p>
<br><br>
<div x-data="netStats()" x-init="load()">
<template x-if="callsigns.length">
<div>
<h2 class="text-xl font-semibold mb-2">Callsigns That Have Checked In since January 2025</h2>
<ul class="columns-2 sm:columns-3 md:columns-4">
<template x-for="call in callsigns" :key="call">
<li x-text="call"></li>
</template>
</ul>
</div>
</template>
<br><br>
<template x-if="weekly.length">
<div class="mb-6">
<h2 class="text-xl font-semibold mb-2">Check-Ins Per Week</h2>
@@ -90,17 +103,6 @@
</ul>
</div>
</template>
<template x-if="callsigns.length">
<div>
<h2 class="text-xl font-semibold mb-2">Callsigns That Have Checked In</h2>
<ul class="columns-2 sm:columns-3 md:columns-4">
<template x-for="call in callsigns" :key="call">
<li x-text="call"></li>
</template>
</ul>
</div>
</template>
</div>
</main>

View File

@@ -1,18 +1,55 @@
{
"weekly": [
{ "date": "2025-06-06", "count": 12 },
{ "date": "2025-06-13", "count": 15 },
{ "date": "2025-06-20", "count": 9 },
{ "date": "2025-06-27", "count": 17 }
{ "date": "2025-06-17", "count": 5 },
{ "date": "2025-06-10", "count": 7 },
{ "date": "2025-06-03 [Repeater Outage]", "count": 2 },
{ "date": "2025-05-27", "count": 6 },
{ "date": "2025-05-20", "count": 4 },
{ "date": "2025-05-13", "count": 5 },
{ "date": "2025-05-06", "count": 7 },
{ "date": "2025-04-29", "count": 7 },
{ "date": "2025-04-22", "count": 5 },
{ "date": "2025-04-08", "count": 4 },
{ "date": "2025-04-01", "count": 6 },
{ "date": "2025-03-18", "count": 5 },
{ "date": "2025-03-12", "count": 3 },
{ "date": "2025-03-04", "count": 2 },
{ "date": "2025-02-25", "count": 3 },
{ "date": "2025-02-18", "count": 5 },
{ "date": "2025-02-11", "count": 7 },
{ "date": "2025-02-04", "count": 7 },
{ "date": "2025-01-28", "count": 5 },
{ "date": "2025-01-21", "count": 5 },
{ "date": "2025-01-14", "count": 8 }
],
"callsigns": [
"KD7XYZ",
"N0CALL",
"KI7ABC",
"W7BYU",
"KJ7DEF",
"KA6TST",
"W1RAD",
"KN7HAM"
"K7YLV",
"KF5FLJ",
"KG6EID",
"KI5TLZ",
"KI7NOX",
"KIK7WRR",
"KJ7LJU",
"KJ7ZTE",
"KK7BBR",
"KK7BBS",
"KK7DMH",
"KK7MMG",
"KK7STE",
"KK7TVJ",
"KK7YLV",
"KM7AYX",
"KM7BAS",
"KM7BBC",
"KM7BCG",
"KM7BOA",
"KO6GCM",
"KR4BWL",
"N7LRW",
"W7FR"
]
}