blogging platform in Go
Find a file
2021-03-19 01:23:40 -04:00
posts posts/hello-world: correct myself a bit re: routing 2021-03-19 01:23:40 -04:00
static static: add favicon 2021-03-19 01:12:15 -04:00
styles server: use different listener for better inotify events 2021-03-02 22:32:20 -05:00
templates templates: point navbar to reasonable places 2021-03-19 00:27:16 -04:00
errorCatcher.go custom error page support 2021-02-17 00:57:16 -05:00
go.mod server: use different listener for better inotify events 2021-03-02 22:32:20 -05:00
go.sum server: use different listener for better inotify events 2021-03-02 22:32:20 -05:00
post.go rename 'pages' to 'posts' and move functionality into own file 2021-03-15 22:47:07 -04:00
prose.go Initial commit - read and serve markdown and static files 2021-02-06 16:27:00 -05:00
README.md Load HTML templates and SCSS styling 2021-02-15 02:31:18 -05:00
server.go separate template logic into own file 2021-03-15 23:36:00 -04:00
template.go separate template logic into own file 2021-03-15 23:36:00 -04:00

Prose

Prose is a blogging platform written in Go, which I am building to serve my own blog.

Usage

Blog posts should be created in the format title-slug.md. Work in progress posts should be stored as WIP-title-slug.md. Static content should be stored in the static/ folder, appropriately arranged.

Posts will be served as /title-slug, and files like static/random/file/structure.txt will be served as /random/file/structure.txt. When title slugs and static files conflict, slugs will have higher precdence.

To start the server:

go run .

Server will be live on port 8080.