From 52f9ccf42e1d636c41c825e516a2d33f5eb2b92d Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 10 Feb 2026 03:36:33 -0800 Subject: [PATCH] add README and contribute link in footer --- README.md | 40 ++++++++++++++++++++ themes/loravega/layouts/_default/baseof.html | 2 +- themes/loravega/static/css/style.css | 4 ++ 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..60ddb63 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +# lora.vegas + +Las Vegas Meshtastic and LoRa community website. + +## About + +This site provides information about the Las Vegas mesh networking community, including: + +- Mesh channel configurations +- Community coordination (Discord, Signal) +- Meetup information +- Local resources + +## Contributing + +To contribute to this site, contact **sneak@sneak.berlin** for git repository access. + +## Technical Details + +This is a static site built with Hugo. The site is deployed automatically via GitHub Actions. + +### Local Development + +```bash +hugo server +``` + +Visit http://localhost:1313 to preview. + +### Build + +```bash +hugo +``` + +Output will be in the `public/` directory. + +## License + +Content is provided as-is for community use. diff --git a/themes/loravega/layouts/_default/baseof.html b/themes/loravega/layouts/_default/baseof.html index 8d6f0ca..20e137b 100644 --- a/themes/loravega/layouts/_default/baseof.html +++ b/themes/loravega/layouts/_default/baseof.html @@ -12,7 +12,7 @@ {{ block "main" . }}{{ end }} diff --git a/themes/loravega/static/css/style.css b/themes/loravega/static/css/style.css index 9536f77..04bbf50 100644 --- a/themes/loravega/static/css/style.css +++ b/themes/loravega/static/css/style.css @@ -93,3 +93,7 @@ footer { border-top: 1px solid #e0e0e0; padding-top: 1rem; } + +.contribute-link { + font-size: 0.7rem; +}