Initial commit: Hugo static site for nerdy events
Some checks failed
Build Hugo Site / build (push) Failing after 19s

- Custom cyberpunk/console theme with pure CSS
- Event management with RSS and iCal calendar feeds
- Gitea workflow for automated deployment
- Complete documentation and setup instructions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-06-04 13:53:50 -06:00
commit 217e4a5de5
32 changed files with 2292 additions and 0 deletions

27
hugo.toml Normal file
View File

@@ -0,0 +1,27 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'NERDER.LAND'
buildFuture = true
# Ignore README.md from being processed as content
ignoreFiles = ["README.md"]
[params]
description = "Welcome to the underground tech scene. Here you'll find the latest nerdy events in our community."
eventSubmissionEmail = "events@nerder.land"
# RSS configuration for events
[outputs]
home = ["HTML", "RSS"]
section = ["HTML", "RSS", "Calendar"]
page = ["HTML", "Calendar"]
[outputFormats]
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "feed"
[outputFormats.Calendar]
mediatype = "text/calendar"
baseName = "calendar"
isPlainText = true