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>