feat: initial Hugo static site for lora.vegas
Minimal single-page site with custom loravega theme. No external dependencies, no JavaScript, pure local CSS. Sections: Mesh Channels, Discord Groups, Signal Groups, Meetup, Resources. Includes LongFast settings reference and getting-started guide. Closes #1
This commit is contained in:
16
themes/loravega/layouts/_default/baseof.html
Normal file
16
themes/loravega/layouts/_default/baseof.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
{{ block "main" . }}{{ end }}
|
||||
<footer>
|
||||
<p>lora.vegas — Las Vegas Meshtastic community</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
6
themes/loravega/layouts/index.html
Normal file
6
themes/loravega/layouts/index.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{{ define "main" }}
|
||||
<h1>📡 LoRa Vegas</h1>
|
||||
<p class="tagline">Las Vegas Meshtastic & LoRa community</p>
|
||||
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
82
themes/loravega/static/css/style.css
Normal file
82
themes/loravega/static/css/style.css
Normal file
@@ -0,0 +1,82 @@
|
||||
: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;
|
||||
}
|
||||
3
themes/loravega/theme.toml
Normal file
3
themes/loravega/theme.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
name = "loravega"
|
||||
description = "Minimal single-page theme for lora.vegas"
|
||||
min_version = "0.100.0"
|
||||
Reference in New Issue
Block a user