lora.vegas/themes/loravega/layouts/_default/baseof.html
sneak 958177fbb8
All checks were successful
Build and Deploy to Cloudflare Pages / build (push) Successful in 6s
Build and Deploy to Cloudflare Pages / deploy (push) Successful in 26s
update design: minimal light theme with inline CSS
- switch to bright/light color scheme
- inline CSS in head for single-file deployment
- show full mesh/signal URLs in monospace
- reorganize meetups into upcoming/past sections
- add Meshcore section
- remove beginner explanatory content
2026-02-10 03:34:53 -08:00

19 lines
472 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 }}">
<style>
{{ readFile "themes/loravega/static/css/style.css" | safeCSS }}
</style>
</head>
<body>
{{ block "main" . }}{{ end }}
<footer>
<p>lora.vegas &mdash; Las Vegas Meshtastic community</p>
</footer>
</body>
</html>