Compare commits

3 Commits

Author SHA1 Message Date
b9a8f1b9b8 Merge branch 'main' of git.eeqj.de:sneak/lora.vegas
All checks were successful
Build and Deploy to Cloudflare Pages / build (push) Successful in 5s
Build and Deploy to Cloudflare Pages / deploy (push) Successful in 27s
2026-02-10 03:43:36 -08:00
52f9ccf42e add README and contribute link in footer 2026-02-10 03:36:33 -08:00
4242c483ff Merge pull request 'feat: initial Hugo static site (closes #1)' (#2) from feat/initial-site into main
All checks were successful
Build and Deploy to Cloudflare Pages / build (push) Successful in 5s
Build and Deploy to Cloudflare Pages / deploy (push) Successful in 27s
Reviewed-on: #2
2026-02-10 12:28:21 +01:00
3 changed files with 45 additions and 1 deletions

40
README.md Normal file
View File

@@ -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.

View File

@@ -12,7 +12,7 @@
<body>
{{ block "main" . }}{{ end }}
<footer>
<p>lora.vegas &mdash; Las Vegas Meshtastic community</p>
<p>lora.vegas &mdash; Las Vegas Meshtastic community <a href="https://git.eeqj.de/sneak/lora.vegas" class="contribute-link">[Contribute]</a></p>
</footer>
</body>
</html>

View File

@@ -93,3 +93,7 @@ footer {
border-top: 1px solid #e0e0e0;
padding-top: 1rem;
}
.contribute-link {
font-size: 0.7rem;
}