summaryrefslogtreecommitdiff
path: root/src/http/http.go
AgeCommit message (Collapse)Author
2024-05-18Render posts completely using common rendering methodsBrian Picciano
The aim is to reduce reliance on custom logic in the handlers for every protocol, eventually outsourcing all of it into `render.Methods`, leaving each protocol to simply direct calls to the correct template.
2024-05-11Move to dev.mediocregopher.com/mediocre-blog.gitBrian Picciano
2023-10-28Fix go module pathBrian Picciano
2023-08-25Remove mailinglist and proof-of-work functionalityBrian Picciano
2023-04-17Implement asset.LoaderBrian Picciano
This moved a bunch of logic out of http and into the asset package, making it available for gmit too.
2023-04-15Move asset store into its own packageBrian Picciano
2023-01-24Refactor URL construction a bitBrian Picciano
BlogHTTPURL and BlogGeminiURL are now used specifically to construct absolute URLs to their respective endpoints.
2023-01-23Implement cache and logger middlewares for geminiBrian Picciano
2023-01-23Automatically bridge gemini links to a gateway on http siteBrian Picciano
2023-01-20Got a basic gemini server runningBrian Picciano
2023-01-19Slight cleanup in http packageBrian Picciano