minus-squareIanTwenty@lemmy.worldtoSelfhosted@lemmy.world•Creating similar service to AlternativeTolinkfedilinkEnglisharrow-up2·10 hours agoAn example site that takes user submissions and is not a wiki: https://nerdydaytrips.org/ https://github.com/nerdydaytrips/website Users submit a form that is turned into a github PR, hosted with cloudflare worker. Site itself is completely static, made with hugo. The data about each map pin is simply key/value in the frontmatter of a markdown file: https://github.com/NerdyDayTrips/website/blob/main/content/daytrip/eu/gb/1066-battle-of-hastings.md Simple but effective and can be styled however you need (hugo has themes). Moderation can scale by adding more contributors who can merge PRs. linkfedilink
An example site that takes user submissions and is not a wiki:
https://nerdydaytrips.org/
https://github.com/nerdydaytrips/website
Users submit a form that is turned into a github PR, hosted with cloudflare worker. Site itself is completely static, made with hugo. The data about each map pin is simply key/value in the frontmatter of a markdown file:
https://github.com/NerdyDayTrips/website/blob/main/content/daytrip/eu/gb/1066-battle-of-hastings.md
Simple but effective and can be styled however you need (hugo has themes). Moderation can scale by adding more contributors who can merge PRs.