From 3b13d9cc53ee4db1999ed02c039e06be2cd8715b Mon Sep 17 00:00:00 2001 From: user Date: Sun, 8 Feb 2026 08:47:55 -0800 Subject: [PATCH] Initial empty repository --- .gitignore | 3 - archetypes/default.md | 5 -- content/_index.md | 35 --------- hugo.toml | 10 --- themes/loravega/layouts/_default/baseof.html | 16 ---- themes/loravega/layouts/index.html | 6 -- themes/loravega/static/css/style.css | 82 -------------------- themes/loravega/theme.toml | 3 - 8 files changed, 160 deletions(-) delete mode 100644 .gitignore delete mode 100644 archetypes/default.md delete mode 100644 content/_index.md delete mode 100644 hugo.toml delete mode 100644 themes/loravega/layouts/_default/baseof.html delete mode 100644 themes/loravega/layouts/index.html delete mode 100644 themes/loravega/static/css/style.css delete mode 100644 themes/loravega/theme.toml diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 526c385..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -public/ -resources/_gen/ -.hugo_build.lock diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index 25b6752..0000000 --- a/archetypes/default.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -date = '{{ .Date }}' -draft = true -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -+++ diff --git a/content/_index.md b/content/_index.md deleted file mode 100644 index defe21f..0000000 --- a/content/_index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "LoRa Vegas" ---- - -## Community - -- [Discord — Las Vegas Meshtastic](https://discord.gg/PLACEHOLDER) — local chat for LV mesh networking -- [Discord — Meshtastic (Official)](https://discord.gg/meshtastic) — the main Meshtastic community -- [Signal Group](https://signal.group/PLACEHOLDER) — Signal chat for local coordination - -## Meshtastic LongFast Settings - -Default channel settings for the Las Vegas area mesh: - -
-Frequency: 906.875 MHz
-Modem Preset: LongFast
-Channel Name: LongFast
-Region: US
-Hop Limit: 3
-Encryption: Default (AQ==)
-
- -These are the standard Meshtastic LongFast defaults for the US region. Just set your region to **US** and modem preset to **LongFast** and you'll be on the same channel as everyone else. - -## What is Meshtastic? - -[Meshtastic](https://meshtastic.org) is an open-source project that lets you build long-range, off-grid mesh communication networks using inexpensive LoRa radios. No cell service, no internet — just radio. - -## Get Started - -1. Get a [supported LoRa radio](https://meshtastic.org/docs/hardware/devices/) (Heltec V3, T-Beam, RAK, etc.) -2. Flash [Meshtastic firmware](https://flasher.meshtastic.org) -3. Set region to **US**, modem preset to **LongFast** -4. Join the community links above diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index a58301b..0000000 --- a/hugo.toml +++ /dev/null @@ -1,10 +0,0 @@ -baseURL = 'https://lora.vegas/' -languageCode = 'en-us' -title = 'LoRa Vegas — Las Vegas Meshtastic Community' -theme = 'loravega' - -[markup.goldmark.renderer] - unsafe = true - -[params] - description = 'Las Vegas LoRa and Meshtastic community hub' diff --git a/themes/loravega/layouts/_default/baseof.html b/themes/loravega/layouts/_default/baseof.html deleted file mode 100644 index 0e7cb79..0000000 --- a/themes/loravega/layouts/_default/baseof.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - {{ .Site.Title }} - - - - - {{ block "main" . }}{{ end }} - - - diff --git a/themes/loravega/layouts/index.html b/themes/loravega/layouts/index.html deleted file mode 100644 index f7e038a..0000000 --- a/themes/loravega/layouts/index.html +++ /dev/null @@ -1,6 +0,0 @@ -{{ define "main" }} -

📡 LoRa Vegas

-

Las Vegas Meshtastic & LoRa community

- - {{ .Content }} -{{ end }} diff --git a/themes/loravega/static/css/style.css b/themes/loravega/static/css/style.css deleted file mode 100644 index f48ba6c..0000000 --- a/themes/loravega/static/css/style.css +++ /dev/null @@ -1,82 +0,0 @@ -:root { - --bg: #0a0a0a; - --fg: #e0e0e0; - --accent: #4fc3f7; - --muted: #888; - --max-w: 600px; -} - -* { margin: 0; padding: 0; box-sizing: border-box; } - -body { - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; - background: var(--bg); - color: var(--fg); - line-height: 1.6; - padding: 2rem 1rem; - max-width: var(--max-w); - margin: 0 auto; -} - -h1 { - font-size: 1.8rem; - margin-bottom: 0.25rem; -} - -.tagline { - color: var(--muted); - margin-bottom: 2rem; -} - -h2 { - font-size: 1.2rem; - margin-top: 2rem; - margin-bottom: 0.5rem; - border-bottom: 1px solid #222; - padding-bottom: 0.25rem; -} - -ul { - list-style: none; - padding: 0; -} - -li { - margin-bottom: 0.5rem; -} - -a { - color: var(--accent); - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -.settings { - background: #111; - border: 1px solid #222; - border-radius: 4px; - padding: 1rem; - margin-top: 0.5rem; - font-family: "SF Mono", "Fira Code", "Consolas", monospace; - font-size: 0.9rem; - line-height: 1.8; -} - -.settings .label { - color: var(--muted); -} - -.settings .value { - color: var(--accent); -} - -footer { - margin-top: 3rem; - color: var(--muted); - font-size: 0.8rem; - border-top: 1px solid #222; - padding-top: 1rem; -} diff --git a/themes/loravega/theme.toml b/themes/loravega/theme.toml deleted file mode 100644 index eae3659..0000000 --- a/themes/loravega/theme.toml +++ /dev/null @@ -1,3 +0,0 @@ -name = "loravega" -description = "Minimal single-page theme for lora.vegas" -min_version = "0.100.0"