lora.vegas/themes/loravega/layouts/_default/baseof.html
clawbot 0cc1dafdd4 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
2026-02-08 09:09:14 -08:00

17 lines
435 B
HTML

<!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 &mdash; Las Vegas Meshtastic community</p>
</footer>
</body>
</html>